fckelementpath.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.  * Manages the DOM ascensors element list of a specific DOM node
  22.  * (limited to body, inclusive).
  23.  */
  24. var FCKElementPath = function( lastNode )
  25. {
  26. var eBlock = null ;
  27. var eBlockLimit = null ;
  28. var aElements = new Array() ;
  29. var e = lastNode ;
  30. while ( e )
  31. {
  32. if ( e.nodeType == 1 )
  33. {
  34. if ( !this.LastElement )
  35. this.LastElement = e ;
  36. var sElementName = e.nodeName.toLowerCase() ;
  37. if ( !eBlockLimit )
  38. {
  39. if ( !eBlock && FCKListsLib.PathBlockElements[ sElementName ] != null )
  40. eBlock = e ;
  41. if ( FCKListsLib.PathBlockLimitElements[ sElementName ] != null )
  42. {
  43. // DIV is considered the Block, if no block is available (#525).
  44. if ( !eBlock && sElementName == 'div' )
  45. eBlock = e ;
  46. else
  47. eBlockLimit = e ;
  48. }
  49. }
  50. aElements.push( e ) ;
  51. if ( sElementName == 'body' )
  52. break ;
  53. }
  54. e = e.parentNode ;
  55. }
  56. this.Block = eBlock ;
  57. this.BlockLimit = eBlockLimit ;
  58. this.Elements = aElements ;
  59. }