在项目中需要验证输入的字符串是否为空,包括空格,不太喜欢使用正则,所以就想到了js的indexOf函数,indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置,如果要检索的字符串值没有出现,则该方法返回 -1。
语法:stringObject.indexOf(searchvalue,fromindex),searchvalue必需,fromindex:可选参数,在字符串中开始检索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略该参数,则将从字符串的首字符开始检索。
1 Demo: 2 3 function CheckValue() { 4 5 var enumValue = document.getElementById('txtEnumValue').value; 6 7 if (enumValue.indexOf(" ")>=0) { 8 9 alert("内容不能包含空格!");10 11 return false;12 13 }14 15 if (enumValue== "") {16 17 alert("请输入内容!");18 19 return false;20 21 }22 23 }
新闻热点
疑难解答