-
判断对象是否为空
1
|
$.isEmptyObject();
|
2.判断字符串是否以'***'开头
1
2
3
4
5
6
7
8
|
var
s = str.indexOf(
"***"
);
if
(s == 0){
//以'***'开头
}
else
if
(s == -1){
//不以'***'开头
}
else
if
(s > 0){
//包含'***'
}
|
3.判断字符串以'***'结束
1
2
|
var
item =
"text.png"
;
/(.jpg|.png|.gif|.bmp|.jpeg)$/.test(item.toLocaleLowerCase());
|
4.判断是否为null
1
2
3
|
|