jquery 当textarea里内容被清空时,提交按钮禁用?是怎么触发的?
$(document).ready(function(){
$("textarea").get(0).change(function(){
if( $.trim(this.value) == "" )
{
$("input:submit").attr("disabled","disabled");
}
else
{
$("input:submit").removeAttr("disabled");
}
});
});