Microsoft's XML parser is bundled with IE5.0 + browser. Once IE5.0 is installed, the XML parser is obtained. In addition to being called by the browser, this browser can also be called in scripts or programs. This parser supports programming models unrelated to programming languages. it supports the following technologies:
Microsoft's XML parser is bundled with IE5.0 + browser.
Once IE5.0 is installed, the XML parser is obtained. In addition to being called by the browser, this browser can also be called in scripts or programs. This parser supports programming models unrelated to programming languages and supports the following technologies:
JavaScript, VBScript, Perl, VB, Java, C ++, etc.
W3C XML 1.0 and XML DOM
DTD and XML document verification
If the browser uses JavaScript as the scripting language, you can use the following code to create an XML document object:
var xmlDoc=new ActiveXObject("Microsoft.XMLDOM")
If the browser uses VBScript as the script language, you can use the following code to create an XML document object:
set xmlDoc=CreateObject("Microsoft.XMLDOM")
If you use the VBScript language in an ASP program, you can use the following code:
set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
--------------------------------------------------------------------------------
Load the XML document into the parser
You can use the script code to load the XML document into the parser.
The following code loads an XML document into the parser: