0
文件後,被刪除:a.html標識和標籤的jQuery負載
...
// JavaScript function
function abc(id)
{
$("#body").load("b.html");
var m = document.getElementById("bbb");
// id and tag is removed after load, bbb can not be found. m is null
if (m != null)
{
m.innerText = "XYZ";
}
}
...
// HTML
<div id="body">
</div>
FILE:b.html
<div id="bbb" tag="bbb" onclick="DoOnClick()">
</div>
標籤和ID jQuery.load之後被刪除。 如何在加載後保留ID或標籤?
'負載()'是異步,使用完整的回調http://api.jquery.com/load/#callback-function –
添加到^^^'$( 「#體」)。負載(「b.html」,function(){var m = document.getElementById(「bbb」); //});'' – Satpal