当使用javascript加载页面时,我需要更改我的html文件中所有“h1”标签的内容。
所以我写了下面的代码
window.onload = function () {
var h1html = document.createElement("h1");
var h1htmltext = document.createTextNode("header 1");
h1html.appendChild(h1htmltext);
document.getElementsByTagName("h1").appendChild(h1html);
};