我的textbox html代码出了什么问题?

时间:2014-09-13 18:35:16

标签: javascript html textbox

以下是代码:

<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。

我是新手,所以非常感谢帮助!感谢。

1 个答案:

答案 0 :(得分:4)

  1. 您在html中使用智能引号。将“”替换为&#34;&#34;。
  2. size=1212不在引号中。
  3. Demo(在一些字符串文字之前或之后添加空格,以使输出字符串更易于阅读。)