如果选中了一个复选框,我想切换一个 div 并禁用一个输入框。此代码用于切换 DIV,但不会重新启用输入框。这在升级到 jQuery 1.9 之前有效。
有任何想法吗?
$(".myLink").on("click", function(){
$(".newDiv").toggle(); // Toggle the div to show/hide
$(".myInput").val('').prop('disabled', $(this).attr('checked')); // Disable the input box if the checkbox is checked.
});