codecamp

XML DOM hasAttributeNS() 方法——Element 对象

XML DOM hasAttributeNS() 方法


Element 对象参考手册 Element 对象

定义和用法

hasAttributeNS() 方法在当前元素节点拥有匹配指定命名空间和名称的属性时返回 TRUE,否则返回 FALSE。

语法

hasAttributeNS(ns,name)

参数 描述
ns 必需。规定要查找的属性的命名空间。
name 必需。规定要查找的属性的名称。


实例

下面的代码片段使用 loadXMLDoc() 把 "books_ns.xml" 载入 xmlDoc 中,并检查第一个 <title> 元素是否拥有指定命名空间和名称的属性:

实例

xmlDoc=loadXMLDoc("books_ns.xml");

x=xmlDoc.getElementsByTagName("title")[0];
ns="//www.w3cschool.cn/children/";

document.write(x.hasAttributeNS(ns,"lang"));

输出:

true

尝试一下 »

Element 对象参考手册 Element 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

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; }