JavaScript 参考手册
HTML DOM renameNode() 方法
重新命名 p 元素
源代码:
点击运行 »
var p = document.getElementsByTagName("P")[0]; document.renameNode(p, null, "h1");
运行结果:
点击运行 »