fckxhtml_ie.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:6k
源码类别:

数据库编程

开发平台:

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