editor.js
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:27k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2. *☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
  3. *★                                                                  ★
  4. *☆                eWebEditor - 在线文本编辑器国生修改版2007.5.3     ☆
  5. *★                                                                  ★
  6. *☆  版权所有: gs008.com                                          ☆
  7. *★                                                                  ★
  8. *☆  程序制作: 国生网络                                          ☆
  9. *★            email:gswon@163.com                            ★
  10. *☆            QQ:18087249                                             ☆
  11. *★                                                                  ★
  12. *☆  相关网址: [原版地址]http://www.eWebSoft.com/Product/eWebEditor/ ☆
  13. *★            [支持论坛]http://bbs.eWebSoft.com/                    ★
  14. *☆                                                                  ☆
  15. *★  主页地址: http://www.gs008.com/blog   国生网络-国生博客                       ★
  16. *☆           有什么问题欢迎到博客提出!                         ☆
  17. *★                                                                  ★
  18. *★                                                                  ★
  19. *☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
  20. */
  21. // 当前模式
  22. var sCurrMode = null;
  23. var bEditMode = null;
  24. // 连接对象
  25. var oLinkField = null;
  26. var sBaseUrl = document.location.protocol + '//' + document.location.host ;
  27. // 浏览器版本检测
  28. var BrowserInfo = new Object() ;
  29. BrowserInfo.MajorVer = navigator.appVersion.match(/MSIE (.)/)[1] ;
  30. BrowserInfo.MinorVer = navigator.appVersion.match(/MSIE ..(.)/)[1] ;
  31. BrowserInfo.IsIE55OrMore = BrowserInfo.MajorVer >= 6 || ( BrowserInfo.MajorVer >= 5 && BrowserInfo.MinorVer >= 5 ) ;
  32. var yToolbars = new Array();  // 工具栏数组
  33. // 当文档完全调入时,进行初始化
  34. var bInitialized = false;
  35.  document.onreadystatechange=function(){
  36. if (document.readyState!="complete") return;
  37. if (bInitialized) return;
  38. bInitialized = true;
  39. var i, s, curr;
  40. // 初始每个工具栏
  41. for (i=0; i<document.body.all.length;i++){
  42. curr=document.body.all[i];
  43. if (curr.className == "yToolbar"){
  44. InitTB(curr);
  45. yToolbars[yToolbars.length] = curr;
  46. }
  47. }
  48. oLinkField = parent.document.getElementsByName(sLinkFieldName)[0];
  49. if (ContentFlag.value=="0") { 
  50. ContentEdit.value = oLinkField.value;
  51. ContentLoad.value = oLinkField.value;
  52. ContentFlag.value = "1";
  53. }
  54. setMode(config.InitMode);
  55. setLinkedField() ;
  56. eWebEditor.document.body.onpaste = onPaste ;
  57. eWebEditor.focus();
  58. }
  59. // 初始化一个工具栏上的按钮
  60. function InitBtn(btn) {
  61. btn.onmouseover = BtnMouseOver;
  62. btn.onmouseout = BtnMouseOut;
  63. btn.onmousedown = BtnMouseDown;
  64. btn.onmouseup = BtnMouseUp;
  65. btn.ondragstart = YCancelEvent;
  66. btn.onselectstart = YCancelEvent;
  67. btn.onselect = YCancelEvent;
  68. btn.YUSERONCLICK = btn.onclick;
  69. btn.onclick = YCancelEvent;
  70. btn.YINITIALIZED = true;
  71. return true;
  72. }
  73. //Initialize a toolbar. 
  74. function InitTB(y) {
  75. // Set initial size of toolbar to that of the handle
  76. y.TBWidth = 0;
  77. // Populate the toolbar with its contents
  78. if (! PopulateTB(y)) return false;
  79. // Set the toolbar width and put in the handle
  80. y.style.posWidth = y.TBWidth;
  81. return true;
  82. }
  83. // Hander that simply cancels an event
  84. function YCancelEvent() {
  85. event.returnValue=false;
  86. event.cancelBubble=true;
  87. return false;
  88. }
  89. // Toolbar button onmouseover handler
  90. function BtnMouseOver() {
  91. if (event.srcElement.tagName != "IMG") return false;
  92. var image = event.srcElement;
  93. var element = image.parentElement;
  94. // Change button look based on current state of image.
  95. if (image.className == "Ico") element.className = "BtnMouseOverUp";
  96. else if (image.className == "IcoDown") element.className = "BtnMouseOverDown";
  97. event.cancelBubble = true;
  98. }
  99. // Toolbar button onmouseout handler
  100. function BtnMouseOut() {
  101. if (event.srcElement.tagName != "IMG") {
  102. event.cancelBubble = true;
  103. return false;
  104. }
  105. var image = event.srcElement;
  106. var element = image.parentElement;
  107. yRaisedElement = null;
  108. element.className = "Btn";
  109. image.className = "Ico";
  110. event.cancelBubble = true;
  111. }
  112. // Toolbar button onmousedown handler
  113. function BtnMouseDown() {
  114. if (event.srcElement.tagName != "IMG") {
  115. event.cancelBubble = true;
  116. event.returnValue=false;
  117. return false;
  118. }
  119. var image = event.srcElement;
  120. var element = image.parentElement;
  121. element.className = "BtnMouseOverDown";
  122. image.className = "IcoDown";
  123. event.cancelBubble = true;
  124. event.returnValue=false;
  125. return false;
  126. }
  127. // Toolbar button onmouseup handler
  128. function BtnMouseUp() {
  129. if (event.srcElement.tagName != "IMG") {
  130. event.cancelBubble = true;
  131. return false;
  132. }
  133. var image = event.srcElement;
  134. var element = image.parentElement;
  135. if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");
  136. element.className = "BtnMouseOverUp";
  137. image.className = "Ico";
  138. event.cancelBubble = true;
  139. return false;
  140. }
  141. // Populate a toolbar with the elements within it
  142. function PopulateTB(y) {
  143. var i, elements, element;
  144. // Iterate through all the top-level elements in the toolbar
  145. elements = y.children;
  146. for (i=0; i<elements.length; i++) {
  147. element = elements[i];
  148. if (element.tagName == "SCRIPT" || element.tagName == "!") continue;
  149. switch (element.className) {
  150. case "Btn":
  151. if (element.YINITIALIZED == null) {
  152. if (! InitBtn(element)) {
  153. alert("Problem initializing:" + element.id);
  154. return false;
  155. }
  156. }
  157. element.style.posLeft = y.TBWidth;
  158. y.TBWidth += element.offsetWidth + 1;
  159. break;
  160. case "TBGen":
  161. element.style.posLeft = y.TBWidth;
  162. y.TBWidth += element.offsetWidth + 1;
  163. break;
  164. case "TBSep":
  165. element.style.posLeft = y.TBWidth + 2;
  166. y.TBWidth += 5;
  167. break;
  168. case "TBHandle":
  169. element.style.posLeft = 2;
  170. y.TBWidth += element.offsetWidth + 7;
  171. break;
  172. default:
  173. alert("Invalid class: " + element.className + " on Element: " + element.id + " <" + element.tagName + ">");
  174. return false;
  175. }
  176. }
  177. y.TBWidth += 1;
  178. return true;
  179. }
  180. // 设置所属表单的提交或reset事件
  181. function setLinkedField() {
  182. if (! oLinkField) return ;
  183. var oForm = oLinkField.form ;
  184. if (!oForm) return ;
  185. // 附加submit事件
  186. oForm.attachEvent("onsubmit", AttachSubmit) ;
  187. if (! oForm.submitEditor) oForm.submitEditor = new Array() ;
  188. oForm.submitEditor[oForm.submitEditor.length] = AttachSubmit ;
  189. if (! oForm.originalSubmit) {
  190. oForm.originalSubmit = oForm.submit ;
  191. oForm.submit = function() {
  192. if (this.submitEditor) {
  193. for (var i = 0 ; i < this.submitEditor.length ; i++) {
  194. this.submitEditor[i]() ;
  195. }
  196. }
  197. this.originalSubmit() ;
  198. }
  199. }
  200. // 附加reset事件
  201. oForm.attachEvent("onreset", AttachReset) ;
  202. if (! oForm.resetEditor) oForm.resetEditor = new Array() ;
  203. oForm.resetEditor[oForm.resetEditor.length] = AttachReset ;
  204. if (! oForm.originalReset) {
  205. oForm.originalReset = oForm.reset ;
  206. oForm.reset = function() {
  207. if (this.resetEditor) {
  208. for (var i = 0 ; i < this.resetEditor.length ; i++) {
  209. this.resetEditor[i]() ;
  210. }
  211. }
  212. this.originalReset() ;
  213. }
  214. }
  215. }
  216. // 附加submit提交事件,大表单数据提交,远程文件获取,保存eWebEditor中的内容
  217. var bDoneAutoRemote = false;
  218. function AttachSubmit() { 
  219. var oForm = oLinkField.form ;
  220. if (!oForm) return;
  221. if ((config.AutoRemote=="1")&&(!bDoneAutoRemote)){
  222. parent.event.returnValue = false;
  223. bDoneAutoRemote = true;
  224. remoteUpload();
  225. } else {
  226. var html = getHTML();
  227. ContentEdit.value = html;
  228. if (sCurrMode=="TEXT"){
  229. html = HTMLEncode(html);
  230. }
  231. splitTextField(oLinkField, html);
  232. }
  233. // 提交表单
  234. function doSubmit(){
  235. var oForm = oLinkField.form ;
  236. if (!oForm) return ;
  237. oForm.submit();
  238. }
  239. // 附加Reset事件
  240. function AttachReset() {
  241. if (!bEditMode) setMode('EDIT');
  242. if(bEditMode){
  243. eWebEditor.document.body.innerHTML = ContentLoad.value;
  244. }else{
  245. eWebEditor.document.body.innerText = ContentLoad.value;
  246. }
  247. }
  248. // 粘贴时自动检测是否来源于Word格式
  249. function onPaste() {
  250. if (config.AutoDetectPasteFromWord && BrowserInfo.IsIE55OrMore) {
  251. var sHTML = GetClipboardHTML() ;
  252. var re = /<w[^>]* class="?MsoNormal"?/gi ;
  253. if ( re.test( sHTML ) )
  254. {
  255. if ( confirm( "你要粘贴的内容好象是从Word中拷出来的,是否要先清除Word格式再粘贴?" ) )
  256. {
  257. cleanAndPaste( sHTML ) ;
  258. return false ;
  259. }
  260. }
  261. }
  262. else
  263. return true ;
  264. }
  265. function GetClipboardHTML() {
  266. var oDiv = document.getElementById("eWebEditor_Temp_HTML")
  267. oDiv.innerHTML = "" ;
  268. var oTextRange = document.body.createTextRange() ;
  269. oTextRange.moveToElementText(oDiv) ;
  270. oTextRange.execCommand("Paste") ;
  271. var sData = oDiv.innerHTML ;
  272. oDiv.innerHTML = "" ;
  273. return sData ;
  274. }
  275. function cleanAndPaste( html ) {
  276. // Remove all SPAN tags
  277. html = html.replace(/</?SPAN[^>]*>/gi, "" );
  278. // Remove Class attributes
  279. html = html.replace(/<(w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
  280. // Remove Style attributes
  281. html = html.replace(/<(w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ;
  282. // Remove Lang attributes
  283. html = html.replace(/<(w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
  284. // Remove XML elements and declarations
  285. html = html.replace(/<\??xml[^>]*>/gi, "") ;
  286. // Remove Tags with XML namespace declarations: <o:p></o:p>
  287. html = html.replace(/</?w+:[^>]*>/gi, "") ;
  288. // Replace the &nbsp;
  289. html = html.replace(/&nbsp;/, " " );
  290. // Transform <P> to <DIV>
  291. var re = new RegExp("(<P)([^>]*>.*?)(</P>)","gi") ; // Different because of a IE 5.0 error
  292. html = html.replace( re, "<div$2</div>" ) ;
  293. insertHTML( html ) ;
  294. }
  295. // 在当前文档位置插入.
  296. function insertHTML(html) {
  297. if (!validateMode()) return;
  298. if (eWebEditor.document.selection.type.toLowerCase() != "none")
  299. eWebEditor.document.selection.clear() ;
  300. eWebEditor.document.selection.createRange().pasteHTML(html) ; 
  301. }
  302. // 设置编辑器的内容
  303. /*function setHTML(html) {
  304. ContentEdit.value = html;
  305. switch (sCurrMode){
  306. case "CODE":
  307. eWebEditor.document.designMode="On";
  308. eWebEditor.document.open();
  309. eWebEditor.document.write(config.StyleEditorHeader);
  310. eWebEditor.document.body.innerText=html;
  311. eWebEditor.document.body.contentEditable="true";
  312. eWebEditor.document.close();
  313. bEditMode=false;
  314. break;
  315. case "EDIT":
  316. eWebEditor.document.designMode="On";
  317. eWebEditor.document.open();
  318. eWebEditor.document.write(config.StyleEditorHeader+html);
  319. eWebEditor.document.body.contentEditable="true";
  320. eWebEditor.document.execCommand("2D-Position",true,true);
  321. eWebEditor.document.execCommand("MultipleSelection", true, true);
  322. eWebEditor.document.execCommand("LiveResize", true, true);
  323. eWebEditor.document.close();
  324. doZoom(nCurrZoomSize);
  325. bEditMode=true;
  326. eWebEditor.document.onselectionchange = function () { doToolbar();}
  327. break;
  328. case "TEXT":
  329. eWebEditor.document.designMode="On";
  330. eWebEditor.document.open();
  331. eWebEditor.document.write(config.StyleEditorHeader);
  332. eWebEditor.document.body.innerText=html;
  333. eWebEditor.document.body.contentEditable="true";
  334. eWebEditor.document.close();
  335. bEditMode=false;
  336. break;
  337. case "VIEW":
  338. eWebEditor.document.designMode="off";
  339. eWebEditor.document.open();
  340. eWebEditor.document.write(config.StyleEditorHeader+html);
  341. eWebEditor.document.body.contentEditable="false";
  342. eWebEditor.document.close();
  343. bEditMode=false;
  344. break;
  345. }
  346. eWebEditor.document.body.onpaste = onPaste ;
  347. eWebEditor.document.body.onhelp = onHelp ;
  348. eWebEditor.document.onkeydown = new Function("return onKeyDown(eWebEditor.event);");
  349. eWebEditor.document.oncontextmenu=new Function("return showContextMenu(eWebEditor.event);");
  350. if ((borderShown != "0")&&bEditMode) {
  351. borderShown = "0";
  352. showBorders();
  353. }
  354. initHistory();
  355. }*/
  356. // 设置编辑器的内容
  357. function setHTML(html) {
  358. if (!validateMode()) return;
  359. ContentEdit.value = html;
  360. if(bEditMode){
  361. eWebEditor.document.body.innerHTML = html;
  362. }else{
  363. eWebEditor.document.body.innerText = html;
  364. }
  365. }
  366. // 取编辑器的内容
  367. function getHTML() {
  368. var html;
  369. if(bEditMode){
  370. html = eWebEditor.document.body.innerHTML;
  371. }else{
  372. html = eWebEditor.document.body.innerText;
  373. }
  374. var re = new RegExp(sBaseUrl.replace(///,"/"),"gi");
  375. html = html.replace(re, "");
  376. if ((html.toLowerCase()=="<p>&nbsp;</p>")||(html.toLowerCase()=="<p></p>")){
  377. html = "";
  378. }
  379. return html;
  380. }
  381. // 在尾部追加内容
  382. function appendHTML(html) {
  383. if (!validateMode()) return;
  384. if(bEditMode){
  385. eWebEditor.document.body.innerHTML += html;
  386. }else{
  387. eWebEditor.document.body.innerText += html;
  388. }
  389. }
  390. // 从Word中粘贴,去除格式
  391. function PasteWord(){
  392. if (!validateMode()) return;
  393. eWebEditor.focus();
  394. if (BrowserInfo.IsIE55OrMore)
  395. cleanAndPaste( GetClipboardHTML() ) ;
  396. else if ( confirm( "此功能要求IE5.5版本以上,你当前的浏览器不支持,是否按常规粘贴进行?" ) )
  397. format("paste") ;
  398. eWebEditor.focus();
  399. }
  400. // 粘贴纯文本
  401. function PasteText(){
  402. if (!validateMode()) return;
  403. eWebEditor.focus();
  404. var sText = HTMLEncode( clipboardData.getData("Text") ) ;
  405. insertHTML(sText);
  406. eWebEditor.focus();
  407. }
  408. // 检测当前是否允许编辑
  409. function validateMode() {
  410. if (bEditMode) return true;
  411. alert("需转换为编辑状态后才能使用编辑功能!");
  412. eWebEditor.focus();
  413. return false;
  414. }
  415. // 格式化编辑器中的内容
  416. function format(what,opt) {
  417. if (!validateMode()) return;
  418. eWebEditor.focus();
  419. if (opt=="RemoveFormat") {
  420. what=opt;
  421. opt=null;
  422. }
  423. if (opt==null) eWebEditor.document.execCommand(what);
  424. else eWebEditor.document.execCommand(what,"",opt);
  425. eWebEditor.focus();
  426. }
  427. // 确保焦点在 eWebEditor 内
  428. function VerifyFocus() {
  429. if ( eWebEditor )
  430. eWebEditor.focus();
  431. }
  432. // 改变模式:代码、编辑、预览
  433. function setMode(NewMode){
  434. if (NewMode!=sCurrMode){
  435. var sBody = "";
  436. switch(sCurrMode){
  437. case "CODE":
  438. sBody = eWebEditor.document.body.innerText;
  439. break;
  440. case "EDIT":
  441. case "VIEW":
  442. sBody = eWebEditor.document.body.innerHTML;
  443. break;
  444. default:
  445. sBody = ContentEdit.value;
  446. break;
  447. }
  448. // 换图片
  449. try{
  450. document.all["eWebEditor_CODE"].className = "StatusBarBtnOff";
  451. document.all["eWebEditor_EDIT"].className = "StatusBarBtnOff";
  452. document.all["eWebEditor_VIEW"].className = "StatusBarBtnOff";
  453. document.all["eWebEditor_"+NewMode].className = "StatusBarBtnOn";
  454. }
  455. catch(e){
  456. }
  457. // 换内容
  458. switch (NewMode){
  459. case "CODE":
  460. eWebEditor.document.designMode="On";
  461. eWebEditor.document.open();
  462. eWebEditor.document.write(config.StyleEditorHeader);
  463. eWebEditor.document.body.innerText=sBody;
  464. eWebEditor.document.body.contentEditable="true";
  465. eWebEditor.document.oncontextmenu=new Function("return showContextMenu(eWebEditor.event);");
  466. eWebEditor.document.close();
  467. bEditMode=false;
  468. break;
  469. case "EDIT":
  470. eWebEditor.document.designMode="On";
  471. eWebEditor.document.open();
  472. eWebEditor.document.write(config.StyleEditorHeader);
  473. eWebEditor.document.body.innerHTML=sBody;
  474. eWebEditor.document.body.contentEditable="true";
  475. eWebEditor.document.oncontextmenu=new Function("return showContextMenu(eWebEditor.event);");
  476. eWebEditor.document.execCommand("2D-Position",true,true);
  477. eWebEditor.document.execCommand("MultipleSelection", true, true);
  478. eWebEditor.document.execCommand("LiveResize", true, true);
  479. eWebEditor.document.close();
  480. doZoom(nCurrZoomSize);
  481. bEditMode=true;
  482. break;
  483. case "VIEW":
  484. eWebEditor.document.designMode="off";
  485. eWebEditor.document.open();
  486. eWebEditor.document.write(config.StyleEditorHeader+sBody);
  487. eWebEditor.document.body.contentEditable="false";
  488. eWebEditor.document.close();
  489. bEditMode=false;
  490. break;
  491. }
  492. sCurrMode=NewMode;
  493. disableChildren(eWebEditor_Toolbar);
  494. if ((borderShown != "no")&&bEditMode) {
  495. borderShown = "no";
  496. showBorders()
  497. }
  498. }
  499. eWebEditor.focus();
  500. }
  501. // 使工具栏无效
  502. function disableChildren(obj){
  503. if (obj){
  504. obj.disabled=(!bEditMode);
  505. for (var i=0; i<obj.children.length; i++){
  506. disableChildren(obj.children[i]);
  507. }
  508. }
  509. }
  510. // 显示无模式对话框
  511. function ShowDialog(url, width, height, optValidate) {
  512. if (optValidate) {
  513. if (!validateMode()) return;
  514. }
  515. eWebEditor.focus();
  516. var arr = showModalDialog(url, window, "dialogWidth:" + width + "px;dialogHeight:" + height + "px;help:no;scroll:no;status:no");
  517. eWebEditor.focus();
  518. }
  519. // 全屏编辑
  520. function Maximize() {
  521. if (!validateMode()) return;
  522. window.open("dialog/fullscreen.htm?style="+config.StyleName, 'FullScreen'+sLinkFieldName, 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,fullscreen=yes');
  523. }
  524. // 替换特殊字符
  525. function HTMLEncode(text){
  526. text = text.replace(/&/g, "&amp;") ;
  527. text = text.replace(/"/g, "&quot;") ;
  528. text = text.replace(/</g, "&lt;") ;
  529. text = text.replace(/>/g, "&gt;") ;
  530. text = text.replace(/'/g, "&#146;") ;
  531. text = text.replace(/ /g,"&nbsp;");
  532. text = text.replace(/n/g,"<br>");
  533. text = text.replace(/t/g,"&nbsp;&nbsp;&nbsp;&nbsp;");
  534. return text;
  535. }
  536. // 插入特殊对象
  537. function insert(what) {
  538. if (!validateMode()) return;
  539. eWebEditor.focus();
  540. var sel = eWebEditor.document.selection.createRange();
  541. switch(what){
  542. case "excel": // 插入EXCEL表格
  543. insertHTML("<object classid='clsid:0002E510-0000-0000-C000-000000000046' id='Spreadsheet1' codebase='file:\Bobsoftwareoffice2000msowc.cab' width='100%' height='250'><param name='HTMLURL' value><param name='HTMLData' value='&lt;html xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot;xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;&lt;head&gt;&lt;style type=&quot;text/css&quot;&gt;&lt;!--tr{mso-height-source:auto;}td{black-space:nowrap;}.wc4590F88{black-space:nowrap;font-family:宋体;mso-number-format:General;font-size:auto;font-weight:auto;font-style:auto;text-decoration:auto;mso-background-source:auto;mso-pattern:auto;mso-color-source:auto;text-align:general;vertical-align:bottom;border-top:none;border-left:none;border-right:none;border-bottom:none;mso-protection:locked;}--&gt;&lt;/style&gt;&lt;/head&gt;&lt;body&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;&lt;x:ExcelWorkbook&gt;&lt;x:ExcelWorksheets&gt;&lt;x:ExcelWorksheet&gt;&lt;x:OWCVersion&gt;9.0.0.2710&lt;/x:OWCVersion&gt;&lt;x:Label Style='border-top:solid .5pt silver;border-left:solid .5pt silver;border-right:solid .5pt silver;border-bottom:solid .5pt silver'&gt;&lt;x:Caption&gt;Microsoft Office Spreadsheet&lt;/x:Caption&gt; &lt;/x:Label&gt;&lt;x:Name&gt;Sheet1&lt;/x:Name&gt;&lt;x:WorksheetOptions&gt;&lt;x:Selected/&gt;&lt;x:Height&gt;7620&lt;/x:Height&gt;&lt;x:Width&gt;15240&lt;/x:Width&gt;&lt;x:TopRowVisible&gt;0&lt;/x:TopRowVisible&gt;&lt;x:LeftColumnVisible&gt;0&lt;/x:LeftColumnVisible&gt; &lt;x:ProtectContents&gt;False&lt;/x:ProtectContents&gt; &lt;x:DefaultRowHeight&gt;210&lt;/x:DefaultRowHeight&gt; &lt;x:StandardWidth&gt;2389&lt;/x:StandardWidth&gt; &lt;/x:WorksheetOptions&gt; &lt;/x:ExcelWorksheet&gt;&lt;/x:ExcelWorksheets&gt; &lt;x:MaxHeight&gt;80%&lt;/x:MaxHeight&gt;&lt;x:MaxWidth&gt;80%&lt;/x:MaxWidth&gt;&lt;/x:ExcelWorkbook&gt;&lt;/xml&gt;&lt;![endif]--&gt;&lt;table class=wc4590F88 x:str&gt;&lt;col width=&quot;56&quot;&gt;&lt;tr height=&quot;14&quot;&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;'> <param name='DataType' value='HTMLDATA'> <param name='AutoFit' value='0'><param name='DisplayColHeaders' value='-1'><param name='DisplayGridlines' value='-1'><param name='DisplayHorizontalScrollBar' value='-1'><param name='DisplayRowHeaders' value='-1'><param name='DisplayTitleBar' value='-1'><param name='DisplayToolbar' value='-1'><param name='DisplayVerticalScrollBar' value='-1'> <param name='EnableAutoCalculate' value='-1'> <param name='EnableEvents' value='-1'><param name='MoveAfterReturn' value='-1'><param name='MoveAfterReturnDirection' value='0'><param name='RightToLeft' value='0'><param name='ViewableRange' value='1:65536'></object>");
  544. break;
  545. case "nowdate": // 插入当前系统日期
  546. var d = new Date();
  547. insertHTML(d.toLocaleDateString());
  548. break;
  549. case "nowtime": // 插入当前系统时间
  550. var d = new Date();
  551. insertHTML(d.toLocaleTimeString());
  552. break;
  553. case "br": // 插入换行符
  554. insertHTML("<br>")
  555. break;
  556. case "code": // 代码片段样式
  557. insertHTML('<table width=95% border="0" align="Center" cellpadding="6" cellspacing="0" style="border: 1px Dotted #CCCCCC; TABLE-LAYOUT: fixed"><tr><td bgcolor=#FDFDDF style="WORD-WRAP: break-word"><font style="color: #990000;font-weight:bold">以下是代码片段:</font><br>'+HTMLEncode(sel.text)+'</td></tr></table>');
  558. break;
  559. case "quote": // 引用片段样式
  560. insertHTML('<table width=95% border="0" align="Center" cellpadding="6" cellspacing="0" style="border: 1px Dotted #CCCCCC; TABLE-LAYOUT: fixed"><tr><td bgcolor=#F3F3F3 style="WORD-WRAP: break-word"><font style="color: #990000;font-weight:bold">以下是引用片段:</font><br>'+HTMLEncode(sel.text)+'</td></tr></table>');
  561. break;
  562. case "big": // 字体变大
  563. insertHTML("<big>" + sel.text + "</big>");
  564. break;
  565. case "small": // 字体变小
  566. insertHTML("<small>" + sel.text + "</small>");
  567. break;
  568. default:
  569. alert("错误参数调用!");
  570. break;
  571. }
  572. sel=null;
  573. }
  574. // 显示或隐藏指导方针
  575. var borderShown = "no";
  576. function showBorders() {
  577. if (!validateMode()) return;
  578. var allForms = eWebEditor.document.body.getElementsByTagName("FORM");
  579. var allInputs = eWebEditor.document.body.getElementsByTagName("INPUT");
  580. var allTables = eWebEditor.document.body.getElementsByTagName("TABLE");
  581. var allLinks = eWebEditor.document.body.getElementsByTagName("A");
  582. // 表单
  583. for (a=0; a < allForms.length; a++) {
  584. if (borderShown == "no") {
  585. allForms[a].runtimeStyle.border = "1px dotted #FF0000"
  586. } else {
  587. allForms[a].runtimeStyle.cssText = ""
  588. }
  589. }
  590. // Input Hidden类
  591. for (b=0; b < allInputs.length; b++) {
  592. if (borderShown == "no") {
  593. if (allInputs[b].type.toUpperCase() == "HIDDEN") {
  594. allInputs[b].runtimeStyle.border = "1px dashed #000000"
  595. allInputs[b].runtimeStyle.width = "15px"
  596. allInputs[b].runtimeStyle.height = "15px"
  597. allInputs[b].runtimeStyle.backgroundColor = "#FDADAD"
  598. allInputs[b].runtimeStyle.color = "#FDADAD"
  599. }
  600. } else {
  601. if (allInputs[b].type.toUpperCase() == "HIDDEN")
  602. allInputs[b].runtimeStyle.cssText = ""
  603. }
  604. }
  605. // 表格
  606. for (i=0; i < allTables.length; i++) {
  607. if (borderShown == "no") {
  608. allTables[i].runtimeStyle.border = "1px dotted #BFBFBF"
  609. } else {
  610. allTables[i].runtimeStyle.cssText = ""
  611. }
  612. allRows = allTables[i].rows
  613. for (y=0; y < allRows.length; y++) {
  614.   allCellsInRow = allRows[y].cells
  615. for (x=0; x < allCellsInRow.length; x++) {
  616. if (borderShown == "no") {
  617. allCellsInRow[x].runtimeStyle.border = "1px dotted #BFBFBF"
  618. } else {
  619. allCellsInRow[x].runtimeStyle.cssText = ""
  620. }
  621. }
  622. }
  623. }
  624. // 链接 A
  625. for (a=0; a < allLinks.length; a++) {
  626. if (borderShown == "no") {
  627. if (allLinks[a].href.toUpperCase() == "") {
  628. allLinks[a].runtimeStyle.border = "1px dashed #000000"
  629. allLinks[a].runtimeStyle.width = "20px"
  630. allLinks[a].runtimeStyle.height = "16px"
  631. allLinks[a].runtimeStyle.backgroundColor = "#FFFFCC"
  632. allLinks[a].runtimeStyle.color = "#FFFFCC"
  633. }
  634. } else {
  635. allLinks[a].runtimeStyle.cssText = ""
  636. }
  637. }
  638. if (borderShown == "no") {
  639. borderShown = "yes"
  640. } else {
  641. borderShown = "no"
  642. }
  643. scrollUp()
  644. }
  645. // 返回页面最上部
  646. function scrollUp() {
  647. eWebEditor.scrollBy(0,0);
  648. }
  649. // 缩放操作
  650. var nCurrZoomSize = 100;
  651. var aZoomSize = new Array(10, 25, 50, 75, 100, 150, 200, 500);
  652. function doZoom(size) {
  653. eWebEditor.document.body.runtimeStyle.zoom = size + "%";
  654. nCurrZoomSize = size;
  655. }
  656. // 拼写检查
  657. function spellCheck(){
  658. ShowDialog('dialog/spellcheck.htm', 300, 220, true)
  659. }
  660. // 查找替换
  661. function findReplace(){
  662. ShowDialog('dialog/findreplace.htm', 320, 165, true)
  663. }
  664. // 相对(absolute)或绝对位置(static)
  665. function absolutePosition(){
  666. var objReference = null;
  667. var RangeType = eWebEditor.document.selection.type;
  668. if (RangeType != "Control") return;
  669. var selectedRange = eWebEditor.document.selection.createRange();
  670. for (var i=0; i<selectedRange.length; i++){
  671. objReference = selectedRange.item(i);
  672. if (objReference.style.position != 'absolute') {
  673. objReference.style.position='absolute';
  674. }else{
  675. objReference.style.position='static';
  676. }
  677. }
  678. eWebEditor.content = false;
  679. eWebEditor.setActive();
  680. }
  681. // 上移(forward)或下移(backward)一层
  682. function zIndex(action){
  683. var objReference = null;
  684. var RangeType = eWebEditor.document.selection.type;
  685. if (RangeType != "Control") return;
  686. var selectedRange = eWebEditor.document.selection.createRange();
  687. for (var i=0; i<selectedRange.length; i++){
  688. objReference = selectedRange.item(i);
  689. if (action=='forward'){
  690. objReference.style.zIndex  +=1;
  691. }else{
  692. objReference.style.zIndex  -=1;
  693. }
  694. objReference.style.position='absolute';
  695. }
  696. eWebEditor.content = false;
  697. eWebEditor.setActive();
  698. }
  699. // 是否选中指定类型的控件
  700. function isControlSelected(tag){
  701. if (eWebEditor.document.selection.type == "Control") {
  702. var oControlRange = eWebEditor.document.selection.createRange();
  703. if (oControlRange(0).tagName.toUpperCase() == tag) {
  704. return true;
  705. }
  706. }
  707. return false;
  708. }
  709. // 改变编辑区高度
  710. function sizeChange(size){
  711. for (var i=0; i<parent.frames.length; i++){
  712. if (parent.frames[i].document==self.document){
  713. var obj=parent.frames[i].frameElement;
  714. var height = parseInt(obj.offsetHeight);
  715. if (height+size>=300){
  716. obj.height=height+size;
  717. }
  718. break;
  719. }
  720. }
  721. }
  722. // 大文件内容自动拆分
  723. function splitTextField(objField, html) { 
  724. var strFieldName = objField.name;
  725. var objForm = objField.form;
  726. var objDocument = objField.document;
  727. objField.value = html;
  728. //表单限制值设定,限制值是102399,考虑到中文设为一半
  729. var FormLimit = 50000 ;
  730. // 再次处理时,先赋空值
  731. for (var i=1;i<objDocument.getElementsByName(strFieldName).length;i++) {
  732. objDocument.getElementsByName(strFieldName)[i].value = "";
  733. }
  734. //如果表单值超过限制,拆成多个对象
  735. if (html.length > FormLimit) { 
  736. objField.value = html.substr(0, FormLimit) ;
  737. html = html.substr(FormLimit) ;
  738. while (html.length > 0) { 
  739. var objTEXTAREA = objDocument.createElement("TEXTAREA") ;
  740. objTEXTAREA.name = strFieldName ;
  741. objTEXTAREA.style.display = "none" ;
  742. objTEXTAREA.value = html.substr(0, FormLimit) ;
  743. objForm.appendChild(objTEXTAREA) ;
  744. html = html.substr(FormLimit) ;
  745. // 远程上传
  746. function remoteUpload() { 
  747. if (sCurrMode=="TEXT") return;
  748. var objField = document.getElementsByName("eWebEditor_UploadText")[0];
  749. splitTextField(objField, getHTML());
  750. divProcessing.style.top = (document.body.clientHeight-parseFloat(divProcessing.style.height))/2;
  751. divProcessing.style.left = (document.body.clientWidth-parseFloat(divProcessing.style.width))/2;
  752. divProcessing.style.display = "";
  753. eWebEditor_UploadForm.submit();
  754. // 远程上传完成
  755. function remoteUploadOK() {
  756. divProcessing.style.display = "none";
  757. if (bDoneAutoRemote){
  758. doSubmit();
  759. }
  760. }