在注册程序里面需要用户同意某些条款,不希望在后台才检测,于是写了个js在前台检测是否同意条款,如果
以下是input控制submit按钮提交状态的代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>一个input控制,不同意则禁止按钮submit提交</title>
<meta name="generator" content="editplus" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
</head>
<body>
<script type="text/javascript">
function isallow_jewellry(){
if(document.f1.agree.checked == false){
document.f1.submit.disabled = true;
}else if(document.f1.agree.checked == true){
document.f1.submit.disabled = false;
}
}
</script>
<form name="f1" action="" method="post" enctype="multipart/form-data" >
<input type="checkbox" name="agree" value="1" checked="checked" οnclick="isallow_jewellry()" /> 同意
<input type="submit" name="submit" value="提交" tabindex="1">
</form>
</body>
</html>