我在网上搜索了我的问题的解决方案,但我似乎无法修复它。 我也试过使用验证器,但仍然没有给出。对不起,如果您认为这是一个重复的问题。我似乎无法找到任何东西。这是我做的:
<!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>
答案 0 :(得分:2)
更改
<div id=”content”>Hello</div>
到
<div id="content">Hello</div>
这可能是问题所在。