我想切換div並禁用輸入框(如果選中複選框)。此代碼適用於切換DIV,但不會重新啓用輸入框。這是在升級到jQuery 1.9之前工作的。在Toggle中禁用輸入,在jQuery中
任何想法?
$(".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.
});
我發現[DependsOn](https://github.com/dstreet/dependsOn)和[禁用器窗口小部件(http://dougestep.com/dme/ jquery-disabler-widget)你可能會覺得有用的插件 – Ben