Node: lookupPrefix() メソッド
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
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>未検査</output><br /> Prefix for <code>http://www.w3.org/XML/1998/namespace</code> on <output>: <output>未検査</output><br /> Prefix for <code>http://www.w3.org/TR/html4/</code> on <output>: <output>未検査</output><br /> Prefix for <code>https://www.w3.org/1999/xlink</code> on <output>: <output>未検査</output><br /> Prefix for <code>http://www.w3.org/2000/svg</code> on <svg>: <output>未検査</output><br /> Prefix for <code>https://www.w3.org/1999/xlink</code> on <svg>: <output>未検査</output><br /> Prefix for <code>http://www.w3.org/XML/1998/namespace</code> on <svg>: <output>未検査</output><br /> <svg xmlns:t="http://www.w3.org/2000/svg" height="1"></svg> <button>結果を確認するにはクリック</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 }); 仕様書
| Specification |
|---|
| DOM> # dom-node-lookupprefix> |