本文共 376 字,大约阅读时间需要 1 分钟。
// 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); }});
$('input').bind('input propertychange', function() { //进行相关操作 });
转载地址:http://zlvpa.baihongyu.com/