gpt4 book ai didi

javascript - 为什么按钮消失了?

转载 作者:太空宇宙 更新时间:2023-11-04 14:02:58 25 4
gpt4 key购买 nike

文本“现在我在这里...”应该在单击按钮时消失,而不是按钮本身。

<div id="alpha">Now I'm here...</div>
<button type="button" onclick="remove()">Remove</button>
<script>
function remove()
{
var element = document.getElementById("alpha");
element.parentNode.removeChild(element);
}

/*function add()
{
var ele = document.createElement("p");
var text = document.createTextNode("This is new text");
ele.appendChild(text);

var location = document.getElementById("alpha");
location.appendChild(ele);
}*/
</script>

最佳答案

还有另一个名为 remove 的函数正在干扰您的函数。

重命名你的函数,它工作正常:

http://jsfiddle.net/fL3gZ/

<div id="alpha">Now I'm here...</div>
<button type="button" onclick="Myremove()">Remove</button>
<script>
function Myremove()
{
var element = document.getElementById("alpha");
element.parentNode.removeChild(element);
}
</script>

关于javascript - 为什么按钮消失了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22927182/

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