簡體   English   中英

有沒有辦法用javascript編輯另一個HTML文件

[英]Is there any way to edit an html file from another one, with javascript

有沒有辦法用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);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM