gpt4 book ai didi

php - 如何使用 jquery 从 iframe 包含的 html 页面中删除第一个 div

转载 作者:行者123 更新时间:2023-11-29 22:14:33 25 4
gpt4 key购买 nike

我使用 iframe 在我的 CI 项目中添加了一个 html 页面。现在我想从包含的页面中删除第一个 div。该 div 没有 id。我写了一个 jquery 代码,但它删除了整个 iframe。在这里

$(document).ready(function(){
$("iframe").load(function(){
//$('div:first').remove();
$("body").find("div:first-child").remove();
});
});

html

<div class="span12">
<iframe id="patrolIframe" width="100%" height="900" frameborder="0" scrolling="yes" allowtransparency="true"
src="http://...../map.html"></iframe>
</div>

最佳答案

$(document).ready(function(){
$("iframe").load(function(){
$('div')[0].remove();
});
});

关于php - 如何使用 jquery 从 iframe 包含的 html 页面中删除第一个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16035197/

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