gpt4 book ai didi

javascript - 如何从 .load() 加载的元素中获取innerHTML内容

转载 作者:行者123 更新时间:2023-11-28 19:38:11 25 4
gpt4 key购买 nike

这里是

部分.html:

    <div id="header">
Hello Mars
</div>

完整.html:

    <div id="inj">
</div>

$('#inj').load("part.html #header");
alert(document.getElementById("header").innerHTML); <-- this part is not working

最佳答案

如果你想检查加载的内容,你需要这样做:

$('#inj').load("part.html #header",function(){
alert(document.getElementById("header").innerHTML);
});

检查http://api.jquery.com/load/

关于javascript - 如何从 .load() 加载的元素中获取innerHTML内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25540065/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com