📅  最后修改于: 2022-03-11 15:03:02.042000             🧑  作者: Mango
$('#textareaID').bind('input propertychange', function() {
$("#yourBtnID").hide();
if(this.value.length){
$("#yourBtnID").show();
}
});