JavaScript判断输入内容不能全为空格的方法,用来避免输入框的内容输入的全是空格: 复制代码 代码如下: <BR> function checkBlankSpace(str){<BR> while(str.lastIndexOf(" ")>=0){<BR> str = str.replace(" ","");<BR> }<BR> if(str.length == 0){<BR> alert("输入不能全为空");<BR> }<BR> }<BR> function test(){<BR> var testStr = document.getElementById("test").value;<BR> checkBlankSpace(testStr);<BR> }<BR>