0
在jQuery中,如何通過ID在特定元素標記中搜索DOM並在未找到標記ID的情況下創建該元素?jQuery:我如何搜索特定的ID標籤並創建該元素?
這裏是要創建的元素,如果標籤沒有找到:
<div id="foo"></div>
在jQuery中,如何通過ID在特定元素標記中搜索DOM並在未找到標記ID的情況下創建該元素?jQuery:我如何搜索特定的ID標籤並創建該元素?
這裏是要創建的元素,如果標籤沒有找到:
<div id="foo"></div>
if(!$('#foo').length){//if the element does not exist
$('<div id="foo"/>')//create it
.appendTo('#something');//and inject it to the DOM
}
這裏是一個完美的解決方案
http://jqueryfordesigners.com/element-exists/
$(document).ready(function(){
if (!$('#foo').length) { // implies *not* zero
$('#MyParentDiv').append('<div id="foo"></div>'); // add the element
}
});
這裏有一個jsfiddle