fckxhtml_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.  * Defines the FCKXHtml object, responsible for the XHTML operations.
  22.  * IE specific.
  23.  */
  24. FCKXHtml._GetMainXmlString = function()
  25. {
  26. return this.MainNode.xml ;
  27. }
  28. FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node, nodeName )
  29. {
  30. var aAttributes = htmlNode.attributes,
  31. bHasStyle ;
  32. for ( var n = 0 ; n < aAttributes.length ; n++ )
  33. {
  34. var oAttribute = aAttributes[n] ;
  35. if ( oAttribute.specified )
  36. {
  37. var sAttName = oAttribute.nodeName.toLowerCase() ;
  38. var sAttValue ;
  39. // Ignore any attribute starting with "_fck".
  40. if ( sAttName.StartsWith( '_fck' ) )
  41. continue ;
  42. // The following must be done because of a bug on IE regarding the style
  43. // attribute. It returns "null" for the nodeValue.
  44. else if ( sAttName == 'style' )
  45. {
  46. // Just mark it to do it later in this function.
  47. bHasStyle = true ;
  48. continue ;
  49. }
  50. // There are two cases when the oAttribute.nodeValue must be used:
  51. // - for the "class" attribute
  52. // - for events attributes (on IE only).
  53. else if ( sAttName == 'class' )
  54. {
  55. sAttValue = oAttribute.nodeValue.replace( FCKRegexLib.FCK_Class, '' ) ;
  56. if ( sAttValue.length == 0 )
  57. continue ;
  58. }
  59. else if ( sAttName.indexOf('on') == 0 )
  60. sAttValue = oAttribute.nodeValue ;
  61. else if ( nodeName == 'body' && sAttName == 'contenteditable' )
  62. continue ;
  63. // XHTML doens't support attribute minimization like "CHECKED". It must be transformed to checked="checked".
  64. else if ( oAttribute.nodeValue === true )
  65. sAttValue = sAttName ;
  66. else
  67. {
  68. // We must use getAttribute to get it exactly as it is defined.
  69. // There are some rare cases that IE throws an error here, so we must try/catch.
  70. try
  71. {
  72. sAttValue = htmlNode.getAttribute( sAttName, 2 ) ;
  73. }
  74. catch (e) {}
  75. }
  76. this._AppendAttribute( node, sAttName, sAttValue || oAttribute.nodeValue ) ;
  77. }
  78. }
  79. // IE loses the style attribute in JavaScript-created elements tags. (#2390)
  80. if ( bHasStyle || htmlNode.style.cssText.length > 0 )
  81. {
  82. var data = FCKTools.ProtectFormStyles( htmlNode ) ;
  83. var sStyleValue = htmlNode.style.cssText.replace( FCKRegexLib.StyleProperties, FCKTools.ToLowerCase ) ;
  84. FCKTools.RestoreFormStyles( htmlNode, data ) ;
  85. this._AppendAttribute( node, 'style', sStyleValue ) ;
  86. }
  87. }
  88. // On very rare cases, IE is loosing the "align" attribute for DIV. (right align and apply bulleted list)
  89. FCKXHtml.TagProcessors['div'] = function( node, htmlNode )
  90. {
  91. if ( htmlNode.align.length > 0 )
  92. FCKXHtml._AppendAttribute( node, 'align', htmlNode.align ) ;
  93. node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ;
  94. return node ;
  95. }
  96. // IE automatically changes <FONT> tags to <FONT size=+0>.
  97. FCKXHtml.TagProcessors['font'] = function( node, htmlNode )
  98. {
  99. if ( node.attributes.length == 0 )
  100. node = FCKXHtml.XML.createDocumentFragment() ;
  101. node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
  102. return node ;
  103. }
  104. FCKXHtml.TagProcessors['form'] = function( node, htmlNode )
  105. {
  106. if ( htmlNode.acceptCharset && htmlNode.acceptCharset.length > 0 && htmlNode.acceptCharset != 'UNKNOWN' )
  107. FCKXHtml._AppendAttribute( node, 'accept-charset', htmlNode.acceptCharset ) ;
  108. // IE has a bug and htmlNode.attributes['name'].specified=false if there is
  109. // no element with id="name" inside the form (#360 and SF-BUG-1155726).
  110. var nameAtt = htmlNode.attributes['name'] ;
  111. if ( nameAtt && nameAtt.value.length > 0 )
  112. FCKXHtml._AppendAttribute( node, 'name', nameAtt.value ) ;
  113. node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ;
  114. return node ;
  115. }
  116. // IE doens't see the value attribute as an attribute for the <INPUT> tag.
  117. FCKXHtml.TagProcessors['input'] = function( node, htmlNode )
  118. {
  119. if ( htmlNode.name )
  120. FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ;
  121. if ( htmlNode.value && !node.attributes.getNamedItem( 'value' ) )
  122. FCKXHtml._AppendAttribute( node, 'value', htmlNode.value ) ;
  123. if ( !node.attributes.getNamedItem( 'type' ) )
  124. FCKXHtml._AppendAttribute( node, 'type', 'text' ) ;
  125. return node ;
  126. }
  127. FCKXHtml.TagProcessors['label'] = function( node, htmlNode )
  128. {
  129. if ( htmlNode.htmlFor.length > 0 )
  130. FCKXHtml._AppendAttribute( node, 'for', htmlNode.htmlFor ) ;
  131. node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
  132. return node ;
  133. }
  134. // Fix behavior for IE, it doesn't read back the .name on newly created maps
  135. FCKXHtml.TagProcessors['map'] = function( node, htmlNode )
  136. {
  137. if ( ! node.attributes.getNamedItem( 'name' ) )
  138. {
  139. var name = htmlNode.name ;
  140. if ( name )
  141. FCKXHtml._AppendAttribute( node, 'name', name ) ;
  142. }
  143. node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ;
  144. return node ;
  145. }
  146. FCKXHtml.TagProcessors['meta'] = function( node, htmlNode )
  147. {
  148. var oHttpEquiv = node.attributes.getNamedItem( 'http-equiv' ) ;
  149. if ( oHttpEquiv == null || oHttpEquiv.value.length == 0 )
  150. {
  151. // Get the http-equiv value from the outerHTML.
  152. var sHttpEquiv = htmlNode.outerHTML.match( FCKRegexLib.MetaHttpEquiv ) ;
  153. if ( sHttpEquiv )
  154. {
  155. sHttpEquiv = sHttpEquiv[1] ;
  156. FCKXHtml._AppendAttribute( node, 'http-equiv', sHttpEquiv ) ;
  157. }
  158. }
  159. return node ;
  160. }
  161. // IE ignores the "SELECTED" attribute so we must add it manually.
  162. FCKXHtml.TagProcessors['option'] = function( node, htmlNode )
  163. {
  164. if ( htmlNode.selected && !node.attributes.getNamedItem( 'selected' ) )
  165. FCKXHtml._AppendAttribute( node, 'selected', 'selected' ) ;
  166. node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
  167. return node ;
  168. }
  169. // IE doens't hold the name attribute as an attribute for the <TEXTAREA> and <SELECT> tags.
  170. FCKXHtml.TagProcessors['textarea'] = FCKXHtml.TagProcessors['select'] = function( node, htmlNode )
  171. {
  172. if ( htmlNode.name )
  173. FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ;
  174. node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
  175. return node ;
  176. }