原创 js 判断字符串中是否包含某个字符串
var str = "123";
console.log(str.indexOf("3") != -1 ); // true
var str = "123";
console.log(str.indexOf("3111") != -1 ); // true
false
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
js 判断字符串是否为空
比较变量的类型 typeof(变量) 和 "undefined" 是否相等。
> typeof(aaa)
'undefined'
typeof(aaaa) == "undefined"
> bbb = 2