Posted in Javascript onMay 22, 2014
<pre name="code" class="html"><html> <head> <script> function asd(){ var reg=document.getElementsByName("reg"); if(reg[0].checked){ document.getElementById("submit").disabled=false; } else { document.getElementById("submit").disabled=true; } } </script> </head> <body> <input name="reg" type="checkbox" onclick="asd();" />阅读了吗? <input type="submit" value="注册" id="submit" disabled/> </body> </html></pre><br> <br> <pre></pre> <pre></pre>
选择复选框按钮置灰否则按钮可用
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@