라디오 버튼은 하나의 옵션만 선택해야 할 때 사용됩니다.
예시
다음은 두 개의 라디오 버튼이 있는 양식에 대한 HTML 코드의 예입니다. -
<form action = "/cgi-bin/radiobutton.py" method = "post" target = "_blank"> <input type = "radio" name = "subject" value = "maths" /> Maths <input type = "radio" name = "subject" value = "physics" /> Physics <input type = "submit" value = "Select Subject" /> </form>
이 코드의 결과는 다음 형식입니다. -
다음은 라디오 버튼에 대해 웹 브라우저에서 제공한 입력을 처리하는 radiobutton.py 스크립트입니다. -
#!/usr/bin/python # Import modules for CGI handling import cgi, cgitb # Create instance of FieldStorage form = cgi.FieldStorage() # Get data from fields if form.getvalue('subject'): subject = form.getvalue('subject') else: subject = "Not set" print "Content-type:text/html\r\n\r\n" print "<html>" print "<head>" print "<title>Radio - Fourth CGI Program</title>" print "</head>" print "<body>" print "<h2> Selected Subject is %s</h2>" % subject print "</body>" print "</html>"