此主题相关图片如下:未命名.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编辑过]