如果一个输入框为空,可以把每一行为空的去替代,最后检验,即为
var test=jtrim(content); if(test==""){//库内容为空 alert("内容为空") }else{ alert("内容不为空") }
function jtrim(s) { return s.replace(/(^\s*)|(\s*$)/g,""); // /(^\s*)|(\s*$)/g ,其中开头为任意多个空,或者最后为多个空 }