QName

Property Summary

TypeNameSummary

Identifies the local name of the QName..

Identifies the namespace of the QName, if applicable..

Properties Details

localName

Identifies the local name of the QName.

Returns String

Sample

var Qnamevar = new QName('http://www.w3.org/1999/xhtml', 'author');
application.output(Qnamevar.localName);
application.output(Qnamevar.uri);

uri

Identifies the namespace of the QName, if applicable.

Returns String

Sample

var Qnamevar = new QName('http://www.w3.org/1999/xhtml', 'author');
application.output(Qnamevar.localName);
application.output(Qnamevar.uri);

Last updated