我们有一个网页room.html,其中包含onclick = function place():


 function place()
 var x = document.createElement(“IFRAME”);
 x.setAttribute(“src”,“loading.html”);
 document.body.appendChild(x);
 }



 如何使用页面loading.html中的按钮关闭iframe?

答案 0 :(得分:0)
你可以直接使用jQuery删除它
$('iframe').remove();