Сообщение от Slavok47
|
при выборе первого, второй должен активизироваться
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<script>
function agreeForm1(Obj) {
document.getElementById('Check3').disabled=(Obj.checked)? false: true
}
</script>
</head>
<body>
<form action='index.html' method='post' name='Select' onsubmit='return Calc()'>
<input type="checkbox" id="Check1" onClick="agreeForm1(this)" />
<input type="checkbox" id="Check3" disabled="disabled" />
</form>
</body>
</html>