페이지에 한마디 쓰기

1745 단어 쓰다
helloworld!
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>

좋은 웹페이지 즐겨찾기