标签:
// When the value of the text area changes... $("textarea").on("input", function() { // If there‘s at least one character... if ($(this).val().length > 0) { // Enable the button. $("button").prop("disabled", false); } else { // Else, disable the button. $("button").prop("disabled", true); } });
标签:
原文地址:http://www.cnblogs.com/zhangwei595806165/p/5270138.html