fckxml_ie.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: fckxml_ie.js
  14.  *  FCKXml Class: class to load and manipulate XML files.
  15.  *  (IE specific implementation)
  16.  * 
  17.  * File Authors:
  18.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  19.  */
  20. var FCKXml = function()
  21. {
  22. this.Error = false ;
  23. }
  24. FCKXml.prototype.LoadUrl = function( urlToCall )
  25. {
  26. this.Error = false ;
  27. var oXmlHttp = FCKTools.CreateXmlObject( 'XmlHttp' ) ;
  28. if ( !oXmlHttp )
  29. {
  30. this.Error = true ;
  31. return ;
  32. }
  33. oXmlHttp.open( "GET", urlToCall, false ) ;
  34. oXmlHttp.send( null ) ;
  35. if ( oXmlHttp.status == 200 || oXmlHttp.status == 304 )
  36. this.DOMDocument = oXmlHttp.responseXML ;
  37. else if ( oXmlHttp.status == 0 && oXmlHttp.readyState == 4 )
  38. {
  39. this.DOMDocument = FCKTools.CreateXmlObject( 'DOMDocument' ) ;
  40. this.DOMDocument.async = false ;
  41. this.DOMDocument.resolveExternals = false ;
  42. this.DOMDocument.loadXML( oXmlHttp.responseText ) ;
  43. }
  44. else
  45. {
  46. this.Error = true ;
  47. alert( 'Error loading "' + urlToCall + '"' ) ;
  48. }
  49. }
  50. FCKXml.prototype.SelectNodes = function( xpath, contextNode )
  51. {
  52. if ( this.Error )
  53. return new Array() ;
  54. if ( contextNode )
  55. return contextNode.selectNodes( xpath ) ;
  56. else
  57. return this.DOMDocument.selectNodes( xpath ) ;
  58. }
  59. FCKXml.prototype.SelectSingleNode = function( xpath, contextNode ) 
  60. {
  61. if ( this.Error )
  62. return ;
  63. if ( contextNode )
  64. return contextNode.selectSingleNode( xpath ) ;
  65. else
  66. return this.DOMDocument.selectSingleNode( xpath ) ;
  67. }