![]() ![]() ![]() ![]() |
|||||
|
|||||
樓主 阿福 ![]()
![]() |
checkbox <HTML> <HEAD> <TITLE>快速鍵使用</TITLE> </HEAD> <BODY> <center> <fieldset id=bookfiled style="width:250;height:100"> <legend>清單</legend> <form id=output> <input accesskey="A" type=checkbox value=first id=first>Dhtml <br> <input accesskey="B" type=checkbox value=second id=second>Asp <br> <input accesskey="C" type=checkbox value=third id=third>Php <br> </form> </fieldset> </center> </BODY> </HTML> 可是若改成radio 你會發現到無法選取 這是為什麼呢 <HTML> <HEAD> <TITLE>快速鍵使用</TITLE> </HEAD> <BODY> <center> <fieldset id=bookfiled style="width:250;height:100"> <legend>清單</legend> <form id=output> <input accesskey="A" type=radio value=first id=first>Dhtml <br> <input accesskey="B" type=radio value=second id=second>Asp <br> <input accesskey="C" type=radio value=third id=third>Php <br> </form> </fieldset> </center> </BODY> </HTML> 若有錯誤 還請指教 謝謝
本篇文章發表於2002-07-18 00:21
|