Objects are very important in both php and js. In this article, we mainly share with you the method of determining whether an object exists in jQuery. We hope it can help everyone.
If the following jquery code is used to determine whether an object exists, it cannot be used.
if($("#id")){ //... }else{ //... }
Because $("#id") will return object regardless of whether the object exists.
Correct use to determine whether the object exists should be:
if($("#id").length>0){ //... }else{ //... }
Use the jQuery object's property length to determine, if > 0, it exists.
or
if($("#id")[0]){ //... }else{ //... }
Or directly use the native Javascript code to judge:
if(document.getElementById("id")){ //... }else{ //... }
Related recommendations:
PHP functions, arrays, characters Strings and objects
Detailed introduction to JS operation of BOM object model
The above is the detailed content of How to determine whether an object exists in jQuery. For more information, please follow other related articles on the PHP Chinese website!