XML DOM lookupPrefix() ਮੈਥਡ

ਵਿਆਖਿਆ ਅਤੇ ਵਰਤੋਂ

lookupPrefix() method returns the prefix that matches the specified namespace URI on the current node.

ਗਰੰਥ

elementNode.lookupPrefix(URI)
ਪੈਰਾਮੀਟਰ ਵਰਣਨ
URI ਲਾਜ਼ਮੀ। ਲੱਭਣੇ ਪ੍ਰੇਫਿਕਸ ਦੇ ਨਾਮ ਸਪੇਸ ਯੂਰੀ

ਉਦਾਹਰਣ

ਹੇਠਲਾ ਕੋਡ "books_ns.xml" ਨੂੰ xmlDoc ਵਿੱਚ ਲੋਡ ਕਰਦਾ ਹੈ ਅਤੇ ਦਿੱਤੇ ਨਾਮ ਸਪੇਸ ਯੂਰੀ ਦੇ ਪ੍ਰੇਫਿਕਸ ਲੱਭਦਾ ਹੈ:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
   if (this.readyState == 4 && this.status == 200) {
       myFunction(this);
   }
};
xhttp.open("GET", "books_ns.xml", true);
xhttp.send();
function myFunction(xml) {
    var xmlDoc = xml.responseXML;
    var x = xmlDoc.getElementsByTagName("book")[0];
    document.getElementById("demo").innerHTML =
    x.lookupPrefix("https://www.codew3c.com/meishi/");
}

亲自试一试