JavaScript DHTML/Node Operation/replaceChild

Материал из Web эксперт
Перейти к: навигация, поиск

"replaceChild()" Example

   <source lang="html4strict">
   

<html> <body> <script language="JavaScript"> function function1() {

  var newElement = document.createElement("u");
  newElement.innerHTML = "Text";
  var oldElement = document.all.myBold;
  document.all.myDiv.replaceChild(newElement, oldElement); 

} </script> <button onclick="function1();">Replace text</button>

Sample
    text

</body> </html>


     </source>