我可以使用哪些 Javascript 代码写入 HTML DOM?我想创建一个按钮,每次单击它时,它都会将不同的文本写入文档元素?例子;
第一次点击:
document.getElementById("paragraph").innerHTML= "This is is the initial text."
第二次点击:
document.getElementById("paragraph").innerHTML= "This text replaces the initial text"
第三次点击:
document.getElementById("paragraph").innerHTML= "This text replaces the text from the second click"
等等等等……
所有没有提前感谢。