jQuery 是否有一种方法可以确定 HTML 文档中是否存在特定的表,以及alert();
它是否存在?
我在文档中寻找的特定表的存在是:
<table id="main_table"
jQuery 是否有一种方法可以确定 HTML 文档中是否存在特定的表,以及alert();
它是否存在?
我在文档中寻找的特定表的存在是:
<table id="main_table"
$(function() {
// after dom ready
if($('table#main_table').length){
alert('exists');
}
})
在domready
活动中检查
$(function() {
if ($('#main_table').length) { ... /* element exists */ }
/**
* or - without passing again through jQuery function -
* if (document.getElementById('main_table')) { ... }
*/
});
$(document).ready(function() {
$("#check").click(function() {
if($('table#main_table').length){
alert('Table Exists');
}
});
});
</p>
示例:http: //jsfiddle.net/ipsjolly/3nVrZ/2/