Сообщение от bot87
|
при включении первого чекбокса второй блокировался
|
Как вариант...
<form>
<input type="checkbox" id="one1" onclick="aa(this.checked)" />
<input type="checkbox" id="one2" />
<input type="text" id="one3" />
<input type="text" id="one4" />
<input type="submit" />
</form>
<script>
function aa(Type){
document.getElementById('one2').disabled=Type
}
</script>