牛逼
網頁和微軟WORD相同的命令document.paragraph
網頁和WORD建構標題一H1比較
document.body.appendChild(t);
JAVASCRIPT建構網頁標題一H1
let t = document.createElement("H1");
t.innerText = "標題一劉任昌";
document.body.appendChild(t);//append附加到網頁主體
PYTHON建構WORD標題一的指令document.add_heading('標題一劉任昌真偉大', level=1)
428網頁和word比較.https://jamie941128.blogspot.com/2025/04/blog-post.html
回覆刪除