标签:
function replaceNodeText(id,newText){
var node = document.getElementById(id);
while(node.firstChild)
node.removeChild(node.firstChild);
node.appendChild(document.creatTextNode(newText));
}
标签:
原文地址:http://www.cnblogs.com/f2e520/p/4912586.html