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

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: fcktablehandler_gecko.js
  14.  *  Manage table operations (IE specific).
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18.  */
  19. FCKTableHandler.GetSelectedCells = function()
  20. {
  21. var aCells = new Array() ;
  22. var oSelection = FCK.EditorWindow.getSelection() ;
  23. // If the selection is a text.
  24. if ( oSelection.rangeCount == 1 && oSelection.anchorNode.nodeType == 3 )
  25. {
  26. var oParent = FCKTools.GetElementAscensor( oSelection.anchorNode, 'TD,TH' ) ;
  27. if ( oParent )
  28. {
  29. aCells[0] = oParent ;
  30. return aCells ;
  31. }
  32. }
  33. for ( var i = 0 ; i < oSelection.rangeCount ; i++ )
  34. {
  35. var oRange = oSelection.getRangeAt(i) ;
  36. var oCell ;
  37. if ( oRange.startContainer.tagName.Equals( 'TD', 'TH' ) )
  38. oCell = oRange.startContainer ;
  39. else
  40. oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ;
  41. if ( oCell.tagName.Equals( 'TD', 'TH' ) )
  42. aCells[aCells.length] = oCell ;
  43. }
  44. return aCells ;
  45. }