gpt4 book ai didi

javascript - 使用 document.getElementById 时页面重新加载

转载 作者:行者123 更新时间:2023-11-30 09:44:04 24 4
gpt4 key购买 nike

我使用下面显示的 js 函数使页面的一部分在用户单击按钮时消失。

但是当我点击按钮时,该部分确实消失了,但随后页面重新加载。为什么会这样?

<button id="myDIV" onclick="fncShowHide()">Try it</button>

<script>
window.fncShowHide = function() {
document.getElementById("idein").className = "display-none";
}
</script>

最佳答案

参见 What's the standard behavior when < button > tag click? .

onclick 处理程序返回 false 以阻止任何默认的浏览器操作。

<button id="myDIV" onclick="fncShowHide(); return false;">Try it</button>

关于javascript - 使用 document.getElementById 时页面重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39719292/

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