JavaScript DHTML/Javascript Objects/TextNode — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:23, 26 мая 2010
"TextNode" Example
<html>
<head>
<script>
function replaceText(){
var myTextNode = document.createTextNode("Text was replaced");
var newTN = replaceMe.firstChild.replaceNode(myTextNode);
}
</script>
</head>
<p id="replaceMe">This is some text that will be replaced</p>
<button onclick="replaceText();">Replace text</button>
</body>
</html>