gpt4 book ai didi

javascript - 其中一段被函数的输出替换

转载 作者:行者123 更新时间:2023-11-28 14:33:49 25 4
gpt4 key购买 nike

在下面给出的代码中,一旦我们单击按钮,该段落就会被删除。为什么?

<html>
<head>
<script>
function func_1()
{
document.getElementById("show").innerHTML = "Hello World";
}
</script>
</head>
<body>
<h1>First</h1>
<button onclick="func_1()">Click here </button>

<p id="show"> Second</p>
</body>
</html>

最佳答案

innerHTML 将所选 div 的内容替换为您为其提供的内容。因此,在您的情况下,删除“Second”并添加“Hello world”

关于javascript - 其中一段被函数的输出替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50451711/

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