gpt4 book ai didi

javascript - 有没有办法用javascript从另一个html文件编辑一个html文件

转载 作者:行者123 更新时间:2023-12-03 09:13:04 27 4
gpt4 key购买 nike

有什么方法可以使用 javascript 在另一个 html 文件中添加一些代码,例如

document.getElementById("demo").innerHTML

最佳答案

是的,看看这里 https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild

// 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);

关于javascript - 有没有办法用javascript从另一个html文件编辑一个html文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32023067/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com