xmldoc load()~~~
I wrote a script to load a xml source where
http://www.net360.cn/rss.do?cityId=56&catId=1466
------------------------------------------
if (document.implementation && document.implementation.createDocument)
{
doc = document.implementation.createDocument("", "", null);
}
else if (window.ActiveXObject)
{
doc = new ActiveXObject("Microsoft.XMLDOM");
}
else
{
alert('error');
}
doc.async=false;//不许异步的读取数据
doc.validateOnParse=false;//不分析有效性
doc.load("where
http://www.net360.cn/rss.do?cityId=56&catId=1466")
-----------------------------------------
at some computers,It executes correctly. But at some other
computers,the IE reports error...
Tell me why please
~~I'm sorry for my bad English.
.
Relevant Pages
- Rules Wizard - delay in running VBA macro
... My box is not under any load, ... assumption is the script should fire immediately. ... Jim ... Prev by Date: ... (microsoft.public.office.developer.outlook.vba) - RE: What DLLs are invoved with objWMIService
... > Does anyone know what DLL's I need to load into VB6 to be able to access this ... > WMI information in windows. ... I do not want to use VB Script, ... Prev by Date: ... (microsoft.public.vb.com) - How to view an image that Ive opened with Script-Fu?
... Can somebody show me a short script that will not ... only load the image but also display it? ... Prev by Date: ... (comp.graphics.apps.gimp) - Re: Hyperlinks
... http://www.snipesfamily.net/index_files/DAVE.htm The issue is that Publisher ... the design checker tool will find some of these issues. ... I am betting that you are using a script on your home page that you are not ... I have seen a lot of Publisher produced sites that load ... (microsoft.public.publisher.webdesign) - Re: UCOMIStream, MSHTML and WebBrowser control Persistence Problem
... Actually I had chopped off the top of the Form Load script which correctly ... If I navigate to a file ... It is best to retrieve it from the control each time you ... (microsoft.public.dotnet.languages.vb) |
|