为了账号安全,请及时绑定邮箱和手机立即绑定

我该怎么删除和修改iframe内的指定元素?需要怎么做才能解决/

我该怎么删除和修改iframe内的指定元素?需要怎么做才能解决/

拉风的咖菲猫 2021-06-16 15:07:24
jQuery怎么删除和修改iframe内的指定元素父窗口代码:<body><iframe src="xxxx" id="player"></iframe></body>如果我是链接到别的网站,我怎么使用jQuery删除iframe的指定元素代码?我在网上找了好多案例似乎都不起作用。
查看完整描述

1 回答

?
catspeake

TA贡献1111条经验 获得超0个赞

<iframe src="xxxx" id="player"></iframe>
<script>
1.
$("#player").attr("src","");//清空src
2.
$("#player").removeAttr("src");//删除src
3.若是想要获取其中的内容
var html='';
var time;
time=setInterval(function () {
if (document.all){ //IE
html = document.frames["player"].contentDocument;
}else{ //Firefox
html = document.getElementById("player").contentDocument;
}
if (html .body!=undefined){
clearInterval(time)
}
console.log(html.body)
},100)
//这样你就可以拿到所有你想要的了
</script>


查看完整回答
反对 回复 2021-06-20
  • 1 回答
  • 0 关注
  • 997 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信