fckxml_ie.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 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.  * File Name: fckxml_ie.js
  12.  *  FCKXml Class: class to load and manipulate XML files.
  13.  *  (IE specific implementation)
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. var FCKXml ;
  19. if ( !( FCKXml = NS.FCKXml ) )
  20. {
  21. FCKXml = NS.FCKXml = function()
  22. {}
  23. FCKXml.prototype.LoadUrl = function( urlToCall )
  24. {
  25. var oXmlHttp = FCKTools.CreateXmlObject( 'XmlHttp' ) ;
  26. oXmlHttp.open( "GET", urlToCall, false ) ;
  27. oXmlHttp.send( null ) ;
  28. if ( oXmlHttp.status == 200 )
  29. this.DOMDocument = oXmlHttp.responseXML ;
  30. else if ( oXmlHttp.status == 0 && oXmlHttp.readyState == 4 )
  31. {
  32. this.DOMDocument = FCKTools.CreateXmlObject( 'DOMDocument' ) ;
  33. this.DOMDocument.async = false ;
  34. this.DOMDocument.resolveExternals = false ;
  35. this.DOMDocument.loadXML( oXmlHttp.responseText ) ;
  36. }
  37. else
  38. alert( 'Error loading "' + urlToCall + '"' ) ;
  39. }
  40. FCKXml.prototype.SelectNodes = function( xpath, contextNode )
  41. {
  42. if ( contextNode )
  43. return contextNode.selectNodes( xpath ) ;
  44. else
  45. return this.DOMDocument.selectNodes( xpath ) ;
  46. }
  47. FCKXml.prototype.SelectSingleNode = function( xpath, contextNode ) 
  48. {
  49. if ( contextNode )
  50. return contextNode.selectSingleNode( xpath ) ;
  51. else
  52. return this.DOMDocument.selectSingleNode( xpath ) ;
  53. }
  54. }