如何在默認情況下禁用文本框並讓用戶通過複選框啓用它?如何在默認情況下禁用文本框並在以後啓用?
<input type="checkbox" id="sccb" name="science" value="science">
<script type="text/javascript">
$(document).ready(function(){
$('#sccb').click(function(){
if (this.checked) {
$('#cns').removeAttr("disabled");
}
else {
$("#cns").attr("disabled", true);
}
});
});
</script>
<input type="text" id="cns" name="coornamescience" disabled="disabled" size="30"></input>
隨着一些JavaScript代碼,但我沒有看到任何[努力或獨立研究的證據。(http://stackoverflow.com/questions/how-to-ask)的 – 2013-04-09 03:30:08
可能重複[啓用/從下拉菜單中選擇的選項禁用文本框](http://stackoverflow.com/questions/5258182/enable-disable-of-textbox-on-option-selected-from-drop-down-menu) – 2013-04-09 04:30:41