以下是代码:
<html>
<head>
<title> Welcome Page </title>
</head>
<body>
<h1>Greetings</h1>
<p>
Enter your name: <input type=“text” id=“nameBox” size=12 value="">
</p>
<input type="button" value="Click for Greeting"
onclick="document.getElementById('outputDiv').innerHTML='hello' + document.getElementById('nameBox').value + ', welcome to my page.<br>Do you mind if I call you' + document.getElementById('nameBox').value + '?';">
<hr>
<div id=“outputDiv”></div>
</body>
我得到的是第13行中的错误:未捕获的TypeError:无法读取属性&#39;值&#39; null。
我是新手,所以非常感谢帮助!感谢。
答案 0 :(得分:4)
size=12
:12
不在引号中。Demo(在一些字符串文字之前或之后添加空格,以使输出字符串更易于阅读。)