如何用javascript编写输出?

时间:2015-12-11 20:05:01

标签: javascript string syntax output

我创建了一个带有代码的jsfiddle,该代码旨在用段落中存储的字符串替换段落中的字符串。据我所知,这是对的。但我无法让它发挥作用。有人可以指出我的错误吗?

<p id="arbitraryIdentification">Product information</p>
<button onclick="document.getElementByID('arbitraryIdentification').innerHTML = 'this text just replaced the original text'">text swaperizer</button>

http://jsfiddle.net/q8x9oupn/1/

3 个答案:

答案 0 :(得分:1)

您需要将id括在引号和getElementById(不是ID)

http://jsfiddle.net/q8x9oupn/3/

答案 1 :(得分:1)

查看函数document.getElementById

  

通过其ID返回对元素的引用; ID是字符串   可用于识别元素

所以,你的正确代码是:

document.getElementById('unique-key-here')

Source

答案 2 :(得分:0)

  1. &#39;的getElementById&#39;应该是&#39; getElementById &#39; (&#39; Id&#39;而不是&#39; ID&#39;)

    <button onClick="document.getElementById('arbitraryIdentification').innerHTML = 'this text just replaced the original text'">
    </button>