gpt4 book ai didi

javascript - 从javascript函数插入HTML div标签

转载 作者:行者123 更新时间:2023-11-30 16:12:19 25 4
gpt4 key购买 nike

我在网上搜索了我的问题的解决方案,但似乎无法解决。我也尝试过使用验证器,但仍然一无所获。抱歉,如果您认为这是一个重复的问题。我似乎找不到任何东西。这是我所做的:

    <!DOCTYPE html>

<html>
<head>
<title></title>
</head>
<body>

<p><strong>User Information:</strong></p>

<button onclick="getUserInfo()">Begin</button>

<div id=”content”>Hello</div>

<script type="text/javascript">

function getUserInfo(){

var name = prompt("What is your full name?", "Name");
var age = prompt("How old are you?", "Age");
if (name !== null && age !== null) {
document.getElementById("content").innerHTML =
"Hello, my name is " + name + " and I'm " + age + " years old.";

}
}
</script>


</body>
</html>

最佳答案

改变

<div id=”content”>Hello</div>

<div id="content">Hello</div>

这可能是这里的问题。

关于javascript - 从javascript函数插入HTML div标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36050690/

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