0
我有此代碼並正常工作,但是當我清除文本字段複選框仍然檢查我該怎麼辦?複選框禁用當文本框中的金額超過
<form name="form1">
<div class="controlset-pad">
<input type="checkbox" name="others" onclick="enable_text(this.checked)" class="medium" disabled='disabled'/>
</div>
<input type="checkbox" name="others" onclick="enable_text(this.checked)" class="medium" disabled='disabled'/>
</div>
$('input[name=other_name]').keyup(function(){
if (this.value.length > 0) {
$('input[name="others"]').prop('disabled', false)
} else {
$('input[name="others"]').prop('disabled', true)
}
})
建議增加與KEYUP以及其他活動佔鼠標事件等。 – Iceman