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

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.  * 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 ( FCKBrowserInfo.IsIE && e.scopeName != 'HTML' )
  38. sElementName = e.scopeName.toLowerCase() + ':' + sElementName ;
  39. if ( !eBlockLimit )
  40. {
  41. if ( !eBlock && FCKListsLib.PathBlockElements[ sElementName ] != null )
  42. eBlock = e ;
  43. if ( FCKListsLib.PathBlockLimitElements[ sElementName ] != null )
  44. {
  45. // DIV is considered the Block, if no block is available (#525)
  46. // and if it doesn't contain other blocks.
  47. if ( !eBlock && sElementName == 'div' && !FCKElementPath._CheckHasBlock( e ) )
  48. eBlock = e ;
  49. else
  50. eBlockLimit = e ;
  51. }
  52. }
  53. aElements.push( e ) ;
  54. if ( sElementName == 'body' )
  55. break ;
  56. }
  57. e = e.parentNode ;
  58. }
  59. this.Block = eBlock ;
  60. this.BlockLimit = eBlockLimit ;
  61. this.Elements = aElements ;
  62. }
  63. /**
  64.  * Check if an element contains any block element.
  65.  */
  66. FCKElementPath._CheckHasBlock = function( element )
  67. {
  68. var childNodes = element.childNodes ;
  69. for ( var i = 0, count = childNodes.length ; i < count ; i++ )
  70. {
  71. var child = childNodes[i] ;
  72. if ( child.nodeType == 1 && FCKListsLib.BlockElements[ child.nodeName.toLowerCase() ] )
  73. return true ;
  74. }
  75. return false ;
  76. }