以文本方式查看主题

-  课外天地 李树青  (http://www.njcie.com/bbs/index.asp)
--  Web技术  (http://www.njcie.com/bbs/list.asp?boardid=28)
----  课上练习代码——可以反复激活的按钮  (http://www.njcie.com/bbs/dispbbs.asp?boardid=28&id=1523)

--  作者:admin
--  发布时间:2015/6/9 10:36:23
--  课上练习代码——可以反复激活的按钮


此主题相关图片如下:未命名.png
按此在新窗口浏览图片

<pre>

<head>
    <meta charset="GB2312">
    <title>Form validation</title>
    <script type="text/JavaScript">
 function changeit(control) {
     if(control.checked==true)
  document.frmAgree.btnSubmit.disabled=false;
     else
  document.frmAgree.btnSubmit.disabled=true;
 }
    </script>

</head>
<body >
<form name="frmAgree" action="test.aspx" method="post">
    我愿意自己承担使用该软件带来的相关责任:
     <input type="checkbox" value="0" name="chkAgree" id="chkAgree"  on click="changeit(this)"/>

    <input type="submit" name="btnSubmit" value="Go to download"/><br/>

    <p>除非你同意本网站的协议
        <a href="terms.html">terms and conditions</a>,否则你无法使用相关服务。</p>
</form>

</pre>

[此贴子已经被作者于2015-06-09 10:39:39编辑过]