codecamp

HTML DOM renameNode() 方法

HTML DOM renameNode() 方法

Document 对象参考手册 Document 对象

实例

重新命名 p 元素:

var p=document.getElementsByTagName("P")[0];
document.renameNode(p,null,"h1");

定义和用法

renameNode() 方法重命名已有的元素节点或属性节点。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

目前没有主流浏览器支持 renameNode() 方法。


语法

document.renameNode(node,namespaceURI,nodename)

参数

参数类型 描述
nodeNode 对象必须。需要重命名的节点对象。
namespaceURIString必须, 如果你不想指定可以设置 namespace URI的节点可以设置为 null
nodenameStringRequired, the new nodename

返回值

类型 描述
Node 对象重命名节点

技术细节

DOM 版本Core Level 3 Document 对象


Document 对象参考手册 Document 对象

温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }