fckdomrange_ie.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:6k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 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.  * Class for working with a selection range, much like the W3C DOM Range, but
  22.  * it is not intended to be an implementation of the W3C interface.
  23.  * (IE Implementation)
  24.  */
  25. FCKDomRange.prototype.MoveToSelection = function()
  26. {
  27. this.Release( true ) ;
  28. this._Range = new FCKW3CRange( this.Window.document ) ;
  29. var oSel = this.Window.document.selection ;
  30. if ( oSel.type != 'Control' )
  31. {
  32. var eMarkerStart = this._GetSelectionMarkerTag( true ) ;
  33. var eMarkerEnd = this._GetSelectionMarkerTag( false ) ;
  34. if ( !eMarkerStart && !eMarkerEnd )
  35. {
  36. this._Range.setStart( this.Window.document.body, 0 ) ;
  37. this._UpdateElementInfo() ;
  38. return ;
  39. }
  40. // Set the start boundary.
  41. this._Range.setStart( eMarkerStart.parentNode, FCKDomTools.GetIndexOf( eMarkerStart ) ) ;
  42. eMarkerStart.parentNode.removeChild( eMarkerStart ) ;
  43. // Set the end boundary.
  44. this._Range.setEnd( eMarkerEnd.parentNode, FCKDomTools.GetIndexOf( eMarkerEnd ) ) ;
  45. eMarkerEnd.parentNode.removeChild( eMarkerEnd ) ;
  46. this._UpdateElementInfo() ;
  47. }
  48. else
  49. {
  50. var oControl = oSel.createRange().item(0) ;
  51. if ( oControl )
  52. {
  53. this._Range.setStartBefore( oControl ) ;
  54. this._Range.setEndAfter( oControl ) ;
  55. this._UpdateElementInfo() ;
  56. }
  57. }
  58. }
  59. FCKDomRange.prototype.Select = function( forceExpand )
  60. {
  61. if ( this._Range )
  62. this.SelectBookmark( this.CreateBookmark( true ), forceExpand ) ;
  63. }
  64. // Not compatible with bookmark created with CreateBookmark2.
  65. // The bookmark nodes will be deleted from the document.
  66. FCKDomRange.prototype.SelectBookmark = function( bookmark, forceExpand )
  67. {
  68. var bIsCollapsed = this.CheckIsCollapsed() ;
  69. var bIsStartMakerAlone ;
  70. var dummySpan ;
  71. // Create marker tags for the start and end boundaries.
  72. var eStartMarker = this.GetBookmarkNode( bookmark, true ) ;
  73. if ( !eStartMarker )
  74. return ;
  75. var eEndMarker ;
  76. if ( !bIsCollapsed )
  77. eEndMarker = this.GetBookmarkNode( bookmark, false ) ;
  78. // Create the main range which will be used for the selection.
  79. var oIERange = this.Window.document.body.createTextRange() ;
  80. // Position the range at the start boundary.
  81. oIERange.moveToElementText( eStartMarker ) ;
  82. oIERange.moveStart( 'character', 1 ) ;
  83. if ( eEndMarker )
  84. {
  85. // Create a tool range for the end.
  86. var oIERangeEnd = this.Window.document.body.createTextRange() ;
  87. // Position the tool range at the end.
  88. oIERangeEnd.moveToElementText( eEndMarker ) ;
  89. // Move the end boundary of the main range to match the tool range.
  90. oIERange.setEndPoint( 'EndToEnd', oIERangeEnd ) ;
  91. oIERange.moveEnd( 'character', -1 ) ;
  92. }
  93. else
  94. {
  95. bIsStartMakerAlone = ( forceExpand || !eStartMarker.previousSibling || eStartMarker.previousSibling.nodeName.toLowerCase() == 'br' ) && !eStartMarker.nextSibing ;
  96. // Append a temporary <span>&#65279;</span> before the selection.
  97. // This is needed to avoid IE destroying selections inside empty
  98. // inline elements, like <b></b> (#253).
  99. // It is also needed when placing the selection right after an inline
  100. // element to avoid the selection moving inside of it.
  101. dummySpan = this.Window.document.createElement( 'span' ) ;
  102. dummySpan.innerHTML = '&#65279;' ; // Zero Width No-Break Space (U+FEFF). See #1359.
  103. eStartMarker.parentNode.insertBefore( dummySpan, eStartMarker ) ;
  104. if ( bIsStartMakerAlone )
  105. {
  106. // To expand empty blocks or line spaces after <br>, we need
  107. // instead to have any char, which will be later deleted using the
  108. // selection.
  109. // ufeff = Zero Width No-Break Space (U+FEFF). See #1359.
  110. eStartMarker.parentNode.insertBefore( this.Window.document.createTextNode( 'ufeff' ), eStartMarker ) ;
  111. }
  112. }
  113. if ( !this._Range )
  114. this._Range = this.CreateRange() ;
  115. // Remove the markers (reset the position, because of the changes in the DOM tree).
  116. this._Range.setStartBefore( eStartMarker ) ;
  117. eStartMarker.parentNode.removeChild( eStartMarker ) ;
  118. if ( bIsCollapsed )
  119. {
  120. if ( bIsStartMakerAlone )
  121. {
  122. // Move the selection start to include the temporary &#65279;.
  123. oIERange.moveStart( 'character', -1 ) ;
  124. oIERange.select() ;
  125. // Remove our temporary stuff.
  126. this.Window.document.selection.clear() ;
  127. }
  128. else
  129. oIERange.select() ;
  130. FCKDomTools.RemoveNode( dummySpan ) ;
  131. }
  132. else
  133. {
  134. this._Range.setEndBefore( eEndMarker ) ;
  135. eEndMarker.parentNode.removeChild( eEndMarker ) ;
  136. oIERange.select() ;
  137. }
  138. }
  139. FCKDomRange.prototype._GetSelectionMarkerTag = function( toStart )
  140. {
  141. var doc = this.Window.document ;
  142. var selection = doc.selection ;
  143. // Get a range for the start boundary.
  144. var oRange ;
  145. // IE may throw an "unspecified error" on some cases (it happened when
  146. // loading _samples/default.html), so try/catch.
  147. try
  148. {
  149. oRange = selection.createRange() ;
  150. }
  151. catch (e)
  152. {
  153. return null ;
  154. }
  155. // IE might take the range object to the main window instead of inside the editor iframe window.
  156. // This is known to happen when the editor window has not been selected before (See #933).
  157. // We need to avoid that.
  158. if ( oRange.parentElement().document != doc )
  159. return null ;
  160. oRange.collapse( toStart === true ) ;
  161. // Paste a marker element at the collapsed range and get it from the DOM.
  162. var sMarkerId = 'fck_dom_range_temp_' + (new Date()).valueOf() + '_' + Math.floor(Math.random()*1000) ;
  163. oRange.pasteHTML( '<span id="' + sMarkerId + '"></span>' ) ;
  164. return doc.getElementById( sMarkerId ) ;
  165. }