当前位置:主页 > 网页前端 > jquery >

通过length属性判断jquery对象是否存在

时间:2021-03-03 10:08:58 | 栏目:jquery | 点击:

复制代码 代码如下:

//jquery 通过得到对象的长度判断对象是否存在
function testJquery() {
if ($(".tel").length > 0) {
alert("存在");
}
else {
alert("不存在");
}
}

您可能感兴趣的文章:

相关文章