Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Node.isDefaultNamespace()

Nos bénévoles n'ont pas encore traduit cet article en Français. Aidez-nous à réaliser cette tâche !

The Node.isDefaultNamespace()method accepts a namespace URI as an argument and returns a Boolean with a value of true if the namespace is the default namespace on the given node or false if not.

Syntax

result = node.isDefaultNamespace(namespaceURI) 
  • result holds the return value true or false.
  • namespaceURI is a string representing the namespace against which the element will be checked.

Example

var XULNS = "https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var el = document.getElementsByTagNameNS(XULNS, 'textbox')[0];

alert(el.isDefaultNamespace(XULNS)); // true

Specification

Étiquettes et contributeurs liés au document

 Contributeurs à cette page : fscholz, teoli, kscarfone, namolmes, Sheppy, mattbasta, ethertank, ziyunfei, Brettz9
 Dernière mise à jour par : fscholz,