Judgment method: 1. Get the specified element through the id attribute value, the syntax "$("#id value")" will return a jQuery object containing the specified element; 2. Use "element object.length> 0" statement determines whether the number of elements in the specified jQ object is greater than 0. If it is greater than 0, the specified id element exists, otherwise it does not exist.
The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.
jquery method to determine whether an element exists based on id
1. Get the specified element through the id attribute value
$("#id值")
will return a jQuery object containing the specified element
2. Use the length attribute to detect whether the jQuery object exists
jQuery对象.length>0
The length attribute can count jquery objects The number of elements in
If the specified id element exists, the number of elements will be greater than or equal to 1
If the number is equal to 0, The specified id element does not exist
Implementation example:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <style> div,p{ display: block; border: 2px solid lightgrey; color: lightgrey; padding: 5px; margin: 15px; } </style> <script> $(document).ready(function() { $("button").on("click", function() { var len=$("#box").length; console.log("id元素存在,个数为:"+len); $("#box").css({ "color": "red", "border": "2px solid red" }); }); }); </script> </head> <body class="ancestors"> <div id="box">div元素</div> <p>p元素</p> <div>div元素</div> <button>id为“box”的元素是否存在</button> </body> </html>
jQuery video tutorial, web front-end video】
The above is the detailed content of How to determine whether an element exists based on id in jquery. For more information, please follow other related articles on the PHP Chinese website!