I have two forms on an HTML5 page. Each form has a name and an id. The second form has an h1 element, which also has a name and an id. How do I change the text of this h1 element on the second form using plain JavaScript?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Try:
document.getElementById("yourH1_element_Id").innerHTML = "yourTextHere";
回答2:
You can use this: document.getElementById('h1_id').innerHTML = 'the new text';
回答3:
document.getElementById("myh1id").innerHTML = "my text"
回答4:
You may try the following:
document.getElementById("your_h1_id").innerHTML = "your new text here"
回答5:
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.