Home >Web Front-end >JS Tutorial >Determine whether the jquery object exists through the length attribute_jquery

Determine whether the jquery object exists through the length attribute_jquery

WBOY
WBOYOriginal
2016-05-16 17:19:421057browse
Copy code The code is as follows:

//jquery determines whether the object exists by getting the length of the object
function testJquery() {
if ($(".tel").length > 0) {
alert("Exists");
}
else {
alert("No Exist");
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn