如何通过克隆其中的按钮来删除父iframe?

时间:2016-02-11 17:49:48

标签: javascript php

我有一个iframe和一个按钮可以在里面点击它。如何通过按下此按钮来删除此iframe?

示例:

  <iframe src="link"><button onlick="removeparent()"></iframe>

有办法吗?

2 个答案:

答案 0 :(得分:0)

button放在iframe之外。你不能把它放进去。

<iframe src="link"></iframe>
<button onclick="removeparent();"></button>

答案 1 :(得分:0)

试用此代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
      <iframe id="demo" src="http://www.microsmsm.com/"></iframe>
      <button onClick="removeparent()">Remove Iframe</button>
      <script>
    function removeparent(){
        document.getElementById("demo").remove();
    }
    </script>

</body>
</html>