通过length属性判断jquery对象是否存在
程序员文章站
2022-10-31 16:34:45
通过length属性判断jquery对象是否存在代码如下:
//jquery 通过得到对象的长度判断对象是否存在
function testjquery() {
if ($(".tel&...
通过length属性判断jquery对象是否存在代码如下:
//jquery 通过得到对象的长度判断对象是否存在
function testjquery() {
if ($(".tel").length > 0) {
alert("存在");
}
else {
alert("不存在");
}
}