js判斷dom節點是否存在

Bacer發表於2021-09-11

js判斷dom節點是否存在

本文教程操作環境:windows7系統、jquery3.2.1版本,DELL G3電腦。

方法一:判斷length是否大於等於1

length大於等於1,則dom節點存在

Object.prototype.exist = function(){
    if(typeof this !='undefined' && this.length>=1){
        return true;
    }
 
    return false;
};

方法二:使用document.getElementById方法判斷

返回null則dom節點不存在

if (document.getElementById("map")) {
        console.log("存在");
        console.log(document.getElementById("map"));
    } else {
        console.log("不存在");
        console.log(document.getElementById("map"));
}

以上就是小編整理總結的JavaScript中判斷dom是否存在節點的兩種方法,大家都可以嘗試看看哦·更多JavaScript學習推薦:。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2768/viewspace-2831132/,如需轉載,請註明出處,否則將追究法律責任。

相關文章