通过length属性判断jquery对象是否存在_jquery
程序员文章站
2022-03-26 15:33:24
...
复制代码 代码如下:
//jquery 通过得到对象的长度判断对象是否存在
function testJquery() {
if ($(".tel").length > 0) {
alert("存在");
}
else {
alert("不存在");
}
}