function replaceNodeText(id,newText){
var node = document.getElementById(id);
while(node.firstChild)
node.removeChild(node.firstChild);
node.appendChild(document.creatTextNode(newText));
}
时间: 2024-10-08 23:08:06
function replaceNodeText(id,newText){
var node = document.getElementById(id);
while(node.firstChild)
node.removeChild(node.firstChild);
node.appendChild(document.creatTextNode(newText));
}