你如何从里面关闭<iframe>?

时间:2017-12-28 12:08:48

标签: javascript jquery

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

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

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

&#xA;

1 个答案:

答案 0 :(得分:0)

你可以直接使用jQuery删除它

$('iframe').remove();