1

jQuery 是否有一种方法可以确定 HTML 文档中是否存在特定的表,以及alert();它是否存在?

我在文档中寻找的特定表的存在是:

<table id="main_table"
4

3 回答 3

8
$(function() {
    // after dom ready

    if($('table#main_table').length){
      alert('exists');
    }

})
于 2012-05-22T11:06:11.463 回答
2

domready活动中检查

$(function() {
    if ($('#main_table').length) { ... /* element exists */ }

    /** 
     * or - without passing again through jQuery function -
     * if (document.getElementById('main_table')) { ... }
     */
});
于 2012-05-22T11:06:12.530 回答
1
$(document).ready(function() {
     $("#check").click(function() {
         if($('table#main_table').length){
          alert('Table Exists');
        }
    });
});

​</p>

示例:http: //jsfiddle.net/ipsjolly/3nVrZ/2/

于 2012-05-22T11:14:17.250 回答