有没有办法用javascript之类的
在另一个html文件中添加一些代码document.getElementById("demo").innerHTML
答案 0 :(得分:1)
是的,请看这里Link3
// Create a new paragraph element, and append it to the end of the document body
var p = document.createElement("p");
document.getElementById("demo").appendChild(p);