ÁöÁ¤µÈ °ªÀ¸·Î ÅØ½ºÆ® ¹®ÀÚ¿ °³Ã¼¸¦ »ý¼ºÇÑ´Ù.
| °³Ã¼ | script | IE |
|---|
ÀÌ ¸Þ¼µå´Â (¿µ¾î)DOM Level 1(Document Object Model Level 1)¿¡¼ Á¤ÀǵǾú´Ù.
ÃÖÃÊÀÇ ¹®ÀÚ¿ ¹Ú½º¸¦ Ŭ¸¯Çغ¸¶ó.
<SCRIPT>
function newNode(){
var newObj=document.createTextNode('»õ·Î¿î ¹®ÀÚ¿');
var replaceObj=spanObj.childNodes(0);
replaceObj.replaceNode(newObj);
}
</SCRIPT>
<SPAN id="spanObj" onclick="newNode()">ÃÖÃÊÀÇ ¹®ÀÚ¿</SPAN>