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