gpt4 book ai didi

javascript - 如何通过单击其中的按钮来删除父 iframe?

转载 作者:行者123 更新时间:2023-11-28 06:23:10 24 4
gpt4 key购买 nike

我有一个 iframe 和一个可以在其中单击的按钮。如何通过单击此按钮来删除此 iframe?

示例:

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

有办法做到这一点吗?

最佳答案

试试这个代码:

<!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>

关于javascript - 如何通过单击其中的按钮来删除父 iframe?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35346515/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com