페이지에 한마디 쓰기
1745 단어 쓰다
document.write("hello world!");
function insertParagraph(text){
var str = "<p>";
str += text;
str += "</p>";
document.write(str);
}
insertParagraph("hello world!");
innerHTML 메서드
window.onload = function(){
var testdiv = document.getElementById("testdiv");
alert(testdiv.innerHTML);
testdiv.innerHTML = "<p>hello word!</p>";
}
appendChild(),createTextNode() 메서드 쓰기
window.onload=function(){
var para = document.createElement("p");
var testdiv = document.getElementById("testdiv");
testdiv.appendChild(para);
var txt = document.createTextNode("Hello wordl!");
para.appendChild(txt);
}
좀 더 복잡한
This is mycontent.
var para = document.createElement("p");
var txt1 = document.createTextNode("This is ");
var emphasis = document.createElement("em");
var txt2 = document.createTextNode("my");
var txt3 = document.createTextNode(" content.");
para.appendChild(txt1);
emphasis.appendChild(txt2);
para.appendChild(emphasis);
para.appendChild(txt3);
var testdiv = document.getElementById("testdiv");
var testspan = document.getElementById("sp");
<div id="testdiv"><span id="sp">ss</span></div>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
페이지에 한마디 쓰기helloworld! innerHTML 메서드 appendChild(),createTextNode() 메서드 쓰기 좀 더 복잡한 This is mycontent....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.