JavaScript判断输入内容不能全为空格的方法,用来避免输入框的内容输入的全是空格: 代码如下:<html> <head> [removed] function checkBlankSpace(str){ while(str.lastIndexOf(” “)>=0){ str = str.replace(” “,””); } if(str.length == 0){ alert(“输入不能全为空”); } } function test(){ var testStr = document.