我有一个iframe和一个按钮可以在里面点击它。如何通过按下此按钮来删除此iframe?
示例:
<iframe src="link"><button onlick="removeparent()"></iframe>
有办法吗?
答案 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>