Change the Value of h1 Element within a Form with JavaScript

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-03 02:14:31

Try:


document.getElementById("yourH1_element_Id").innerHTML = "yourTextHere";

You can use this: document.getElementById('h1_id').innerHTML = 'the new text';

document.getElementById("myh1id").innerHTML = "my text"

You may try the following:

document.getElementById("your_h1_id").innerHTML = "your new text here"

You can do it with regular JavaScript this way:

document.getElementById('h1_id').innerHTML = 'h1 content here';

Here is the doc for getElementById and the innerHTML property.

The innerHTML property description:

A DOMString containing the HTML serialization of the element's descendants. Setting the value of innerHTML removes all of the element's descendants and replaces them with nodes constructed by parsing the HTML given in the string htmlString.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!