Posted on 2009-09-17 08:59
S.l.e!ep.¢% 閱讀(1884)
評論(0) 編輯 收藏 引用 所屬分類:
HTML
html單選按鈕的使用
2009-08-04 10:21
<html>??? <head>?? <meta?? http-equiv="Content-Language"?? content="zh-cn">?? <meta?? name="GENERATOR"?? content="Microsoft?? FrontPage?? 5.0">?? <meta?? name="ProgId"?? content="FrontPage.Editor.Document">?? <meta?? http-equiv="Content-Type"?? content="text/html;?? charset=gb2312">?? <title>新建網頁?? 1</title>?? <script>?? function?? aa()?? {?? ??? for(var?? i=0;i<document.forms[0].R1.length;i++)?? ??? {?? ????? if?? (document.forms[0].R1[i].checked)?? ??????????? document.forms[0].R1[i].checked=false;?? ??? }?? }?? </script>?? </head>??? <body>??? <form?? method="POST"?? action="--WEBBOT-SELF--">?? ????? <input?? type="radio"?? value="你好啊"?? name="R1">中國<p>?? ????? <input?? type="radio"?? name="R1"?? value="V1">日本</p>?? ????? <p><input?? type="radio"?? name="R1"?? value="V2">美國</p>?? ????? <p><input?? type="button"?? value="按鈕"?? name="B1"?? onclick="aa()"></p>?? ????? </p>?? </form>??? </body>??? </html>
|