fckxml_ie.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:2k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * FCKXml Class: class to load and manipulate XML files.
  22.  * (IE specific implementation)
  23.  */
  24. FCKXml.prototype =
  25. {
  26. LoadUrl : function( urlToCall )
  27. {
  28. this.Error = false ;
  29. var oXmlHttp = FCKTools.CreateXmlObject( 'XmlHttp' ) ;
  30. if ( !oXmlHttp )
  31. {
  32. this.Error = true ;
  33. return ;
  34. }
  35. oXmlHttp.open( "GET", urlToCall, false ) ;
  36. oXmlHttp.send( null ) ;
  37. if ( oXmlHttp.status == 200 || oXmlHttp.status == 304 )
  38. this.DOMDocument = oXmlHttp.responseXML ;
  39. else if ( oXmlHttp.status == 0 && oXmlHttp.readyState == 4 )
  40. {
  41. this.DOMDocument = FCKTools.CreateXmlObject( 'DOMDocument' ) ;
  42. this.DOMDocument.async = false ;
  43. this.DOMDocument.resolveExternals = false ;
  44. this.DOMDocument.loadXML( oXmlHttp.responseText ) ;
  45. }
  46. else
  47. {
  48. this.DOMDocument = null ;
  49. }
  50. if ( this.DOMDocument == null || this.DOMDocument.firstChild == null )
  51. {
  52. this.Error = true ;
  53. if (window.confirm( 'Error loading "' + urlToCall + '"rnDo you want to see more info?' ) )
  54. alert( 'URL requested: "' + urlToCall + '"rn' +
  55. 'Server response:rnStatus: ' + oXmlHttp.status + 'rn' +
  56. 'Response text:rn' + oXmlHttp.responseText ) ;
  57. }
  58. },
  59. SelectNodes : function( xpath, contextNode )
  60. {
  61. if ( this.Error )
  62. return new Array() ;
  63. if ( contextNode )
  64. return contextNode.selectNodes( xpath ) ;
  65. else
  66. return this.DOMDocument.selectNodes( xpath ) ;
  67. },
  68. SelectSingleNode : function( xpath, contextNode )
  69. {
  70. if ( this.Error )
  71. return null ;
  72. if ( contextNode )
  73. return contextNode.selectSingleNode( xpath ) ;
  74. else
  75. return this.DOMDocument.selectSingleNode( xpath ) ;
  76. }
  77. } ;