节点:lookupPrefix() 方法
lookupPrefix()
是 Node
接口的方法,它返回一个字符串,该字符串包含给定命名空间 URI 的前缀(如果存在),如果不存在则返回 null
。当存在多个前缀时,返回第一个前缀。
语法
js
lookupPrefix(namespace)
参数
namespace
-
包含要查找前缀的命名空间的字符串。
注意:此参数不是可选的,但可以设置为
null
。
返回值
包含相应前缀的字符串,或者如果未找到则返回 null
。如果 namespace
为 null 或空字符串,则 lookupPrefix()
返回 null
。
如果节点是 DocumentType
或 DocumentFragment
,则 lookupPrefix()
始终返回 null
。
示例
html
Prefix for <code>http://www.w3.org/2000/svg</code> on <output>:
<output>Not tested</output>.<br />
Prefix for <code>http://www.w3.org/XML/1998/namespace</code> on <output>:
<output>Not tested</output>.<br />
Prefix for <code>http://www.w3.org/TR/html4/</code> on <output>:
<output>Not tested</output>.<br />
Prefix for <code>https://www.w3.org/1999/xlink</code> on <output>:
<output>Not tested</output>.<br />
Prefix for <code>http://www.w3.org/2000/svg</code> on <svg>:
<output>Not tested</output>.<br />
Prefix for <code>https://www.w3.org/1999/xlink</code> on <svg>:
<output>Not tested</output>.<br />
Prefix for <code>http://www.w3.org/XML/1998/namespace</code> on <svg>:
<output>Not tested</output>.<br />
<svg xmlns:t="http://www.w3.org/2000/svg" height="1"></svg>
<button>Click to see the results</button>
js
const button = document.querySelector("button");
button.addEventListener("click", () => {
const aHtmlElt = document.querySelector("output");
const aSvgElt = document.querySelector("svg");
const result = document.getElementsByTagName("output");
result[0].value = aHtmlElt.lookupPrefix("http://www.w3.org/2000/svg"); // true
result[1].value = aHtmlElt.lookupPrefix(
"http://www.w3.org/XML/1998/namespace",
); // false
result[2].value = aHtmlElt.lookupPrefix("http://www.w3.org/TR/html4/"); // true
result[3].value = aHtmlElt.lookupPrefix("https://www.w3.org/1999/xlink"); // false
result[4].value = aSvgElt.lookupPrefix("http://www.w3.org/2000/svg"); // true
result[5].value = aSvgElt.lookupPrefix("https://www.w3.org/1999/xlink"); // true
result[6].value = aSvgElt.lookupPrefix(
"http://www.w3.org/XML/1998/namespace",
); // false
});
规范
规范 |
---|
DOM 标准 # dom-node-lookupprefix |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。