如题,DOM解析一个XML文件,XML的第二行有一个DTD,现在到这行就会报错,怎么能设置DOM对象的属性或者什么方法,能让DOM不解析DTD。
------解决方案--------------------
不懂,帮顶,学习,接分
------解决方案--------------------
到MSDN里找:validateOnParse=false
我手上的MSXML是这样说的:
- HTML code
ValidateOnParse property This property is used to specify whether the XML parser should validate (true) this document against document type definition (DTD), schema, or schema cache on loading.
------解决方案--------------------
xmldom.validateOnParse=false;
xmldom.load(...);