Editor.js
上传用户:lwb168
上传日期:2021-10-31
资源大小:722k
文件大小:32k
源码类别:

Email服务器

开发平台:

ASP/ASPX

  1. /*
  2. *☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
  3. *★                                                                  ★
  4. *☆                eWebEditor - eWebSoft在线编辑器                   ☆
  5. *★                                                                  ★
  6. *☆  版权所有: eWebSoft.com                                          ☆
  7. *★                                                                  ★
  8. *☆  程序制作: eWeb开发团队                                          ☆
  9. *★            email:webmaster@webasp.net                            ★
  10. *☆            QQ:589808                                             ☆
  11. *★                                                                  ★
  12. *☆  相关网址: [产品介绍]http://www.eWebSoft.com/Product/eWebEditor/ ☆
  13. *★            [支持论坛]http://bbs.eWebSoft.com/                    ★
  14. *☆                                                                  ☆
  15. *★  主页地址: http://www.eWebSoft.com/   eWebSoft团队及产品         ★
  16. *☆            http://www.webasp.net/     WEB技术及应用资源网站      ☆
  17. *★            http://bbs.webasp.net/     WEB技术交流论坛            ★
  18. *★                                                                  ★
  19. *☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆
  20. */
  21. // 当前模式
  22. var sCurrMode = null;
  23. var bEditMode = null;
  24. // 连接对象
  25. var oLinkField = null;
  26. // 浏览器版本检测
  27. var BrowserInfo = new Object() ;
  28. BrowserInfo.MajorVer = navigator.appVersion.match(/MSIE (.)/)[1] ;
  29. BrowserInfo.MinorVer = navigator.appVersion.match(/MSIE ..(.)/)[1] ;
  30. BrowserInfo.IsIE55OrMore = BrowserInfo.MajorVer >= 6 || ( BrowserInfo.MajorVer >= 5 && BrowserInfo.MinorVer >= 5 ) ;
  31. var yToolbars = new Array();  // 工具栏数组
  32. // 当文档完全调入时,进行初始化
  33. var bInitialized = false;
  34. function document.onreadystatechange(){
  35. if (document.readyState!="complete") return;
  36. if (bInitialized) return;
  37. bInitialized = true;
  38. var i, s, curr;
  39. // 初始每个工具栏
  40. for (i=0; i<document.body.all.length;i++){
  41. curr=document.body.all[i];
  42. if (curr.className == "yToolbar"){
  43. InitTB(curr);
  44. yToolbars[yToolbars.length] = curr;
  45. }
  46. }
  47. oLinkField = parent.document.getElementsByName(sLinkFieldName)[0];
  48. if (!config.License){
  49. try{
  50. eWebEditor_License.innerHTML = "&copy; <a href='http://www.eWebSoft.com' target='_blank'><font color=#000000>eWebSoft.com</font></a>";
  51. }
  52. catch(e){
  53. }
  54. }
  55. // IE5.5以下版本只能使用纯文本模式
  56. if (!BrowserInfo.IsIE55OrMore){
  57. config.InitMode = "TEXT";
  58. }
  59. if (ContentFlag.value=="0") { 
  60. ContentEdit.value = oLinkField.value;
  61. ContentLoad.value = oLinkField.value;
  62. ModeEdit.value = config.InitMode;
  63. ContentFlag.value = "1";
  64. }
  65. setMode(ModeEdit.value);
  66. setLinkedField() ;
  67. }
  68. // 初始化一个工具栏上的按钮
  69. function InitBtn(btn) {
  70. btn.onmouseover = BtnMouseOver;
  71. btn.onmouseout = BtnMouseOut;
  72. btn.onmousedown = BtnMouseDown;
  73. btn.onmouseup = BtnMouseUp;
  74. btn.ondragstart = YCancelEvent;
  75. btn.onselectstart = YCancelEvent;
  76. btn.onselect = YCancelEvent;
  77. btn.YUSERONCLICK = btn.onclick;
  78. btn.onclick = YCancelEvent;
  79. btn.YINITIALIZED = true;
  80. return true;
  81. }
  82. //Initialize a toolbar. 
  83. function InitTB(y) {
  84. // Set initial size of toolbar to that of the handle
  85. y.TBWidth = 0;
  86. // Populate the toolbar with its contents
  87. if (! PopulateTB(y)) return false;
  88. // Set the toolbar width and put in the handle
  89. y.style.posWidth = y.TBWidth;
  90. return true;
  91. }
  92. // Hander that simply cancels an event
  93. function YCancelEvent() {
  94. event.returnValue=false;
  95. event.cancelBubble=true;
  96. return false;
  97. }
  98. // Toolbar button onmouseover handler
  99. function BtnMouseOver() {
  100. if (event.srcElement.tagName != "IMG") return false;
  101. var image = event.srcElement;
  102. var element = image.parentElement;
  103. // Change button look based on current state of image.
  104. if (image.className == "Ico") element.className = "BtnMouseOverUp";
  105. else if (image.className == "IcoDown") element.className = "BtnMouseOverDown";
  106. event.cancelBubble = true;
  107. }
  108. // Toolbar button onmouseout handler
  109. function BtnMouseOut() {
  110. if (event.srcElement.tagName != "IMG") {
  111. event.cancelBubble = true;
  112. return false;
  113. }
  114. var image = event.srcElement;
  115. var element = image.parentElement;
  116. yRaisedElement = null;
  117. element.className = "Btn";
  118. image.className = "Ico";
  119. event.cancelBubble = true;
  120. }
  121. // Toolbar button onmousedown handler
  122. function BtnMouseDown() {
  123. if (event.srcElement.tagName != "IMG") {
  124. event.cancelBubble = true;
  125. event.returnValue=false;
  126. return false;
  127. }
  128. var image = event.srcElement;
  129. var element = image.parentElement;
  130. element.className = "BtnMouseOverDown";
  131. image.className = "IcoDown";
  132. event.cancelBubble = true;
  133. event.returnValue=false;
  134. return false;
  135. }
  136. // Toolbar button onmouseup handler
  137. function BtnMouseUp() {
  138. if (event.srcElement.tagName != "IMG") {
  139. event.cancelBubble = true;
  140. return false;
  141. }
  142. var image = event.srcElement;
  143. var element = image.parentElement;
  144. if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");
  145. element.className = "BtnMouseOverUp";
  146. image.className = "Ico";
  147. event.cancelBubble = true;
  148. return false;
  149. }
  150. // Populate a toolbar with the elements within it
  151. function PopulateTB(y) {
  152. var i, elements, element;
  153. // Iterate through all the top-level elements in the toolbar
  154. elements = y.children;
  155. for (i=0; i<elements.length; i++) {
  156. element = elements[i];
  157. if (element.tagName == "SCRIPT" || element.tagName == "!") continue;
  158. switch (element.className) {
  159. case "Btn":
  160. if (element.YINITIALIZED == null) {
  161. if (! InitBtn(element)) {
  162. alert("Problem initializing:" + element.id);
  163. return false;
  164. }
  165. }
  166. element.style.posLeft = y.TBWidth;
  167. y.TBWidth += element.offsetWidth + 1;
  168. break;
  169. case "TBGen":
  170. element.style.posLeft = y.TBWidth;
  171. y.TBWidth += element.offsetWidth + 1;
  172. break;
  173. case "TBSep":
  174. element.style.posLeft = y.TBWidth + 2;
  175. y.TBWidth += 5;
  176. break;
  177. case "TBHandle":
  178. element.style.posLeft = 2;
  179. y.TBWidth += element.offsetWidth + 7;
  180. break;
  181. default:
  182. alert("Invalid class: " + element.className + " on Element: " + element.id + " <" + element.tagName + ">");
  183. return false;
  184. }
  185. }
  186. y.TBWidth += 1;
  187. return true;
  188. }
  189. // 设置所属表单的提交或reset事件
  190. function setLinkedField() {
  191. if (! oLinkField) return ;
  192. var oForm = oLinkField.form ;
  193. if (!oForm) return ;
  194. // 附加submit事件
  195. oForm.attachEvent("onsubmit", AttachSubmit) ;
  196. if (! oForm.doneAutoRemote) oForm.doneAutoRemote = 0 ;
  197. if (! oForm.submitEditor) oForm.submitEditor = new Array() ;
  198. oForm.submitEditor[oForm.submitEditor.length] = AttachSubmit ;
  199. if (! oForm.originalSubmit) {
  200. oForm.originalSubmit = oForm.submit ;
  201. oForm.submit = function() {
  202. if (this.submitEditor) {
  203. for (var i = 0 ; i < this.submitEditor.length ; i++) {
  204. this.submitEditor[i]() ;
  205. }
  206. }
  207. this.originalSubmit() ;
  208. }
  209. }
  210. // 附加reset事件
  211. oForm.attachEvent("onreset", AttachReset) ;
  212. if (! oForm.resetEditor) oForm.resetEditor = new Array() ;
  213. oForm.resetEditor[oForm.resetEditor.length] = AttachReset ;
  214. if (! oForm.originalReset) {
  215. oForm.originalReset = oForm.reset ;
  216. oForm.reset = function() {
  217. if (this.resetEditor) {
  218. for (var i = 0 ; i < this.resetEditor.length ; i++) {
  219. this.resetEditor[i]() ;
  220. }
  221. }
  222. this.originalReset() ;
  223. }
  224. }
  225. }
  226. // 附加submit提交事件,大表单数据提交,远程文件获取,保存eWebEditor中的内容
  227. var bDoneAutoRemote = false;
  228. function AttachSubmit() { 
  229. var oForm = oLinkField.form ;
  230. if (!oForm) return;
  231. if ((config.AutoRemote=="1")&&(!bDoneAutoRemote)){
  232. parent.event.returnValue = false;
  233. bDoneAutoRemote = true;
  234. remoteUpload();
  235. } else {
  236. var html = getHTML();
  237. ContentEdit.value = html;
  238. if (sCurrMode=="TEXT"){
  239. html = HTMLEncode(html);
  240. }
  241. splitTextField(oLinkField, html);
  242. }
  243. // 提交表单
  244. function doSubmit(){
  245. var oForm = oLinkField.form ;
  246. if (!oForm) return ;
  247. oForm.submit();
  248. }
  249. // 附加Reset事件
  250. function AttachReset() {
  251. if(bEditMode){
  252. eWebEditor.document.body.innerHTML = ContentLoad.value;
  253. }else{
  254. eWebEditor.document.body.innerText = ContentLoad.value;
  255. }
  256. }
  257. // 显示帮助
  258. function onHelp(){
  259. ShowDialog('dialog/help.htm','400','300');
  260. return false;
  261. }
  262. // 粘贴时自动检测是否来源于Word格式
  263. function onPaste() {
  264. if (sCurrMode=="VIEW") return false;
  265. if (sCurrMode=="EDIT"){
  266. var sHTML = GetClipboardHTML() ;
  267. if (config.AutoDetectPasteFromWord && BrowserInfo.IsIE55OrMore) {
  268. var re = /<w[^>]* class="?MsoNormal"?/gi ;
  269. if ( re.test(sHTML)){
  270. if ( confirm( "你要粘贴的内容好象是从Word中拷出来的,是否要先清除Word格式再粘贴?" ) ){
  271. cleanAndPaste( sHTML ) ;
  272. return false ;
  273. }
  274. }
  275. }
  276. eWebEditor.document.selection.createRange().pasteHTML(sHTML) ;
  277. return false;
  278. }else{
  279. eWebEditor.document.selection.createRange().pasteHTML(HTMLEncode( clipboardData.getData("Text"))) ;
  280. return false;
  281. }
  282. }
  283. // 快捷键
  284. function onKeyDown(event){
  285. var key = String.fromCharCode(event.keyCode).toUpperCase();
  286. // F2:显示或隐藏指导方针
  287. if (event.keyCode==113){
  288. showBorders();
  289. return false;
  290. }
  291. if (event.ctrlKey){
  292. // Ctrl+Enter:提交
  293. if (event.keyCode==10){
  294. doSubmit();
  295. return false;
  296. }
  297. // Ctrl++:增加编辑区
  298. if (key=="+"){
  299. sizeChange(300);
  300. return false;
  301. }
  302. // Ctrl+-:减小编辑区
  303. if (key=="-"){
  304. sizeChange(-300);
  305. return false;
  306. }
  307. // Ctrl+1:代码模式
  308. if (key=="1"){
  309. setMode("CODE");
  310. return false;
  311. }
  312. // Ctrl+2:设计模式
  313. if (key=="2"){
  314. setMode("EDIT");
  315. return false;
  316. }
  317. // Ctrl+3:纯文本
  318. if (key=="3"){
  319. setMode("TEXT");
  320. return false;
  321. }
  322. // Ctrl+4:预览
  323. if (key=="4"){
  324. setMode("VIEW");
  325. return false;
  326. }
  327. }
  328. switch(sCurrMode){
  329. case "VIEW":
  330. return true;
  331. break;
  332. case "EDIT":
  333. if (event.ctrlKey){
  334. // Ctrl+D:从Word粘贴
  335. if (key == "D"){
  336. PasteWord();
  337. return false;
  338. }
  339. // Ctrl+R:查找替换
  340. if (key == "R"){
  341. findReplace();
  342. return false;
  343. }
  344. // Ctrl+Z:Undo
  345. if (key == "Z"){
  346. goHistory(-1);
  347. return false;
  348. }
  349. // Ctrl+Y:Redo
  350. if (key == "Y"){
  351. goHistory(1);
  352. return false;
  353. }
  354. }
  355. if(!event.ctrlKey && event.keyCode != 90 && event.keyCode != 89) {
  356. if (event.keyCode == 32 || event.keyCode == 13){
  357. saveHistory()
  358. }
  359. }
  360. return true;
  361. break;
  362. default:
  363. if (event.keyCode==13){
  364. var sel = eWebEditor.document.selection.createRange();
  365. sel.pasteHTML("<BR>");
  366. event.cancelBubble = true;
  367. event.returnValue = false;
  368. sel.select();
  369. sel.moveEnd("character", 1);
  370. sel.moveStart("character", 1);
  371. sel.collapse(false);
  372. return false;
  373. }
  374. // 屏蔽事件
  375. if (event.ctrlKey){
  376. // Ctrl+B,I,U
  377. if ((key == "B")||(key == "I")||(key == "U")){
  378. return false;
  379. }
  380. }
  381. }
  382. }
  383. // 取剪粘板中的HTML格式数据
  384. function GetClipboardHTML() {
  385. var oDiv = document.getElementById("eWebEditor_Temp_HTML")
  386. oDiv.innerHTML = "" ;
  387. var oTextRange = document.body.createTextRange() ;
  388. oTextRange.moveToElementText(oDiv) ;
  389. oTextRange.execCommand("Paste") ;
  390. var sData = oDiv.innerHTML ;
  391. oDiv.innerHTML = "" ;
  392. return sData ;
  393. }
  394. // 清除WORD冗余格式并粘贴
  395. function cleanAndPaste( html ) {
  396. // Remove all SPAN tags
  397. html = html.replace(/</?SPAN[^>]*>/gi, "" );
  398. // Remove Class attributes
  399. html = html.replace(/<(w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
  400. // Remove Style attributes
  401. html = html.replace(/<(w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ;
  402. // Remove Lang attributes
  403. html = html.replace(/<(w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
  404. // Remove XML elements and declarations
  405. html = html.replace(/<\??xml[^>]*>/gi, "") ;
  406. // Remove Tags with XML namespace declarations: <o:p></o:p>
  407. html = html.replace(/</?w+:[^>]*>/gi, "") ;
  408. // Replace the &nbsp;
  409. html = html.replace(/&nbsp;/, " " );
  410. // Transform <P> to <DIV>
  411. var re = new RegExp("(<P)([^>]*>.*?)(</P>)","gi") ; // Different because of a IE 5.0 error
  412. html = html.replace( re, "<div$2</div>" ) ;
  413. insertHTML( html ) ;
  414. }
  415. // 在当前文档位置插入.
  416. function insertHTML(html) {
  417. if (isModeView()) return false;
  418. if (eWebEditor.document.selection.type.toLowerCase() != "none"){
  419. eWebEditor.document.selection.clear() ;
  420. }
  421. if (sCurrMode!="EDIT"){
  422. html=HTMLEncode(html);
  423. }
  424. eWebEditor.document.selection.createRange().pasteHTML(html) ; 
  425. }
  426. // 设置编辑器的内容
  427. function setHTML(html) {
  428. ContentEdit.value = html;
  429. switch (sCurrMode){
  430. case "CODE":
  431. eWebEditor.document.designMode="On";
  432. eWebEditor.document.open();
  433. eWebEditor.document.write(config.StyleEditorHeader);
  434. eWebEditor.document.body.innerText=html;
  435. eWebEditor.document.body.contentEditable="true";
  436. eWebEditor.document.close();
  437. bEditMode=false;
  438. break;
  439. case "EDIT":
  440. eWebEditor.document.designMode="On";
  441. eWebEditor.document.open();
  442. eWebEditor.document.write(config.StyleEditorHeader+html);
  443. eWebEditor.document.body.contentEditable="true";
  444. eWebEditor.document.execCommand("2D-Position",true,true);
  445. eWebEditor.document.execCommand("MultipleSelection", true, true);
  446. eWebEditor.document.execCommand("LiveResize", true, true);
  447. eWebEditor.document.close();
  448. doZoom(nCurrZoomSize);
  449. bEditMode=true;
  450. eWebEditor.document.onselectionchange = function () { doToolbar();}
  451. break;
  452. case "TEXT":
  453. eWebEditor.document.designMode="On";
  454. eWebEditor.document.open();
  455. eWebEditor.document.write(config.StyleEditorHeader);
  456. eWebEditor.document.body.innerText=html;
  457. eWebEditor.document.body.contentEditable="true";
  458. eWebEditor.document.close();
  459. bEditMode=false;
  460. break;
  461. case "VIEW":
  462. eWebEditor.document.designMode="off";
  463. eWebEditor.document.open();
  464. eWebEditor.document.write(config.StyleEditorHeader+html);
  465. eWebEditor.document.body.contentEditable="false";
  466. eWebEditor.document.close();
  467. bEditMode=false;
  468. break;
  469. }
  470. eWebEditor.document.body.onpaste = onPaste ;
  471. eWebEditor.document.body.onhelp = onHelp ;
  472. eWebEditor.document.onkeydown = new Function("return onKeyDown(eWebEditor.event);");
  473. eWebEditor.document.oncontextmenu=new Function("return showContextMenu(eWebEditor.event);");
  474. if ((borderShown != "0")&&bEditMode) {
  475. borderShown = "0";
  476. showBorders();
  477. }
  478. initHistory();
  479. }
  480. // 取编辑器的内容
  481. function getHTML() {
  482. var html;
  483. if((sCurrMode=="EDIT")||(sCurrMode=="VIEW")){
  484. html = eWebEditor.document.body.innerHTML;
  485. }else{
  486. html = eWebEditor.document.body.innerText;
  487. }
  488. if (sCurrMode!="TEXT"){
  489. if ((html.toLowerCase()=="<p>&nbsp;</p>")||(html.toLowerCase()=="<p></p>")){
  490. html = "";
  491. }
  492. }
  493. return html;
  494. }
  495. // 在尾部追加内容
  496. function appendHTML(html) {
  497. if (isModeView()) return false;
  498. if(sCurrMode=="EDIT"){
  499. eWebEditor.document.body.innerHTML += html;
  500. }else{
  501. eWebEditor.document.body.innerText += html;
  502. }
  503. }
  504. // 从Word中粘贴,去除格式
  505. function PasteWord(){
  506. if (!validateMode()) return;
  507. eWebEditor.focus();
  508. if (BrowserInfo.IsIE55OrMore)
  509. cleanAndPaste( GetClipboardHTML() ) ;
  510. else if ( confirm( "此功能要求IE5.5版本以上,你当前的浏览器不支持,是否按常规粘贴进行?" ) )
  511. format("paste") ;
  512. eWebEditor.focus();
  513. }
  514. // 粘贴纯文本
  515. function PasteText(){
  516. if (!validateMode()) return;
  517. eWebEditor.focus();
  518. var sText = HTMLEncode( clipboardData.getData("Text") ) ;
  519. insertHTML(sText);
  520. eWebEditor.focus();
  521. }
  522. // 检测当前是否允许编辑
  523. function validateMode() {
  524. if (sCurrMode=="EDIT") return true;
  525. alert("需转换为编辑状态后才能使用编辑功能!");
  526. eWebEditor.focus();
  527. return false;
  528. }
  529. // 检测当前是否在预览模式
  530. function isModeView(){
  531. if (sCurrMode=="VIEW"){
  532. alert("预览时不允许设置编辑区内容。");
  533. return true;
  534. }
  535. return false;
  536. }
  537. // 格式化编辑器中的内容
  538. function format(what,opt) {
  539. if (!validateMode()) return;
  540. eWebEditor.focus();
  541. if (opt=="RemoveFormat") {
  542. what=opt;
  543. opt=null;
  544. }
  545. if (opt==null) eWebEditor.document.execCommand(what);
  546. else eWebEditor.document.execCommand(what,"",opt);
  547. eWebEditor.focus();
  548. }
  549. // 确保焦点在 eWebEditor 内
  550. function VerifyFocus() {
  551. if ( eWebEditor )
  552. eWebEditor.focus();
  553. }
  554. // 改变模式:代码、编辑、文本、预览
  555. function setMode(NewMode){
  556. if (NewMode!=sCurrMode){
  557. if (!BrowserInfo.IsIE55OrMore){
  558. if ((NewMode=="CODE") || (NewMode=="EDIT") || (NewMode=="VIEW")){
  559. alert("HTML编辑模式需要IE5.5版本以上的支持!");
  560. return false;
  561. }
  562. }
  563. if (NewMode=="TEXT"){
  564. if (sCurrMode==ModeEdit.value){
  565. if (!confirm("警告!切换到纯文本模式会丢失您所有的HTML格式,您确认切换吗?")){
  566. return false;
  567. }
  568. }
  569. }
  570. var sBody = "";
  571. switch(sCurrMode){
  572. case "CODE":
  573. if (NewMode=="TEXT"){
  574. eWebEditor_Temp_HTML.innerHTML = eWebEditor.document.body.innerText;
  575. sBody = eWebEditor_Temp_HTML.innerText;
  576. }else{
  577. sBody = eWebEditor.document.body.innerText;
  578. }
  579. break;
  580. case "TEXT":
  581. sBody = eWebEditor.document.body.innerText;
  582. sBody = HTMLEncode(sBody);
  583. break;
  584. case "EDIT":
  585. case "VIEW":
  586. if (NewMode=="TEXT"){
  587. sBody = eWebEditor.document.body.innerText;
  588. }else{
  589. sBody = eWebEditor.document.body.innerHTML;
  590. }
  591. break;
  592. default:
  593. sBody = ContentEdit.value;
  594. break;
  595. }
  596. // 换图片
  597. try{
  598. document.all["eWebEditor_CODE"].className = "StatusBarBtnOff";
  599. document.all["eWebEditor_EDIT"].className = "StatusBarBtnOff";
  600. document.all["eWebEditor_TEXT"].className = "StatusBarBtnOff";
  601. document.all["eWebEditor_VIEW"].className = "StatusBarBtnOff";
  602. document.all["eWebEditor_"+NewMode].className = "StatusBarBtnOn";
  603. }
  604. catch(e){
  605. }
  606. sCurrMode = NewMode;
  607. ModeEdit.value = NewMode;
  608. setHTML(sBody);
  609. disableChildren(eWebEditor_Toolbar);
  610. }
  611. }
  612. // 使工具栏无效
  613. function disableChildren(obj){
  614. if (obj){
  615. obj.disabled=(!bEditMode);
  616. for (var i=0; i<obj.children.length; i++){
  617. disableChildren(obj.children[i]);
  618. }
  619. }
  620. }
  621. // 显示无模式对话框
  622. function ShowDialog(url, width, height, optValidate) {
  623. if (optValidate) {
  624. if (!validateMode()) return;
  625. }
  626. eWebEditor.focus();
  627. var arr = showModalDialog(url, window, "dialogWidth:" + width + "px;dialogHeight:" + height + "px;help:no;scroll:no;status:no");
  628. eWebEditor.focus();
  629. }
  630. // 全屏编辑
  631. function Maximize() {
  632. if (!validateMode()) return;
  633. 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');
  634. }
  635. // 创建或修改超级链接
  636. function createLink(){
  637. if (!validateMode()) return;
  638. if (eWebEditor.document.selection.type == "Control") {
  639. var oControlRange = eWebEditor.document.selection.createRange();
  640. if (oControlRange(0).tagName.toUpperCase() != "IMG") {
  641. alert("链接只能是图片或文本");
  642. return;
  643. }
  644. }
  645. ShowDialog("dialog/hyperlink.htm", 350, 170, true);
  646. }
  647. // 替换特殊字符
  648. function HTMLEncode(text){
  649. text = text.replace(/&/g, "&amp;") ;
  650. text = text.replace(/"/g, "&quot;") ;
  651. text = text.replace(/</g, "&lt;") ;
  652. text = text.replace(/>/g, "&gt;") ;
  653. text = text.replace(/'/g, "&#146;") ;
  654. text = text.replace(/ /g,"&nbsp;");
  655. text = text.replace(/n/g,"<br>");
  656. text = text.replace(/t/g,"&nbsp;&nbsp;&nbsp;&nbsp;");
  657. return text;
  658. }
  659. // 插入特殊对象
  660. function insert(what) {
  661. if (!validateMode()) return;
  662. eWebEditor.focus();
  663. var sel = eWebEditor.document.selection.createRange();
  664. switch(what){
  665. case "excel": // 插入EXCEL表格
  666. 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>");
  667. break;
  668. case "nowdate": // 插入当前系统日期
  669. var d = new Date();
  670. insertHTML(d.toLocaleDateString());
  671. break;
  672. case "nowtime": // 插入当前系统时间
  673. var d = new Date();
  674. insertHTML(d.toLocaleTimeString());
  675. break;
  676. case "br": // 插入换行符
  677. insertHTML("<br>")
  678. break;
  679. case "code": // 代码片段样式
  680. 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>');
  681. break;
  682. case "quote": // 引用片段样式
  683. 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>');
  684. break;
  685. case "big": // 字体变大
  686. insertHTML("<big>" + sel.text + "</big>");
  687. break;
  688. case "small": // 字体变小
  689. insertHTML("<small>" + sel.text + "</small>");
  690. break;
  691. default:
  692. alert("错误参数调用!");
  693. break;
  694. }
  695. sel=null;
  696. }
  697. // 显示或隐藏指导方针
  698. var borderShown = config.ShowBorder;
  699. function showBorders() {
  700. if (!validateMode()) return;
  701. var allForms = eWebEditor.document.body.getElementsByTagName("FORM");
  702. var allInputs = eWebEditor.document.body.getElementsByTagName("INPUT");
  703. var allTables = eWebEditor.document.body.getElementsByTagName("TABLE");
  704. var allLinks = eWebEditor.document.body.getElementsByTagName("A");
  705. // 表单
  706. for (a=0; a < allForms.length; a++) {
  707. if (borderShown == "0") {
  708. allForms[a].runtimeStyle.border = "1px dotted #FF0000"
  709. } else {
  710. allForms[a].runtimeStyle.cssText = ""
  711. }
  712. }
  713. // Input Hidden类
  714. for (b=0; b < allInputs.length; b++) {
  715. if (borderShown == "0") {
  716. if (allInputs[b].type.toUpperCase() == "HIDDEN") {
  717. allInputs[b].runtimeStyle.border = "1px dashed #000000"
  718. allInputs[b].runtimeStyle.width = "15px"
  719. allInputs[b].runtimeStyle.height = "15px"
  720. allInputs[b].runtimeStyle.backgroundColor = "#FDADAD"
  721. allInputs[b].runtimeStyle.color = "#FDADAD"
  722. }
  723. } else {
  724. if (allInputs[b].type.toUpperCase() == "HIDDEN")
  725. allInputs[b].runtimeStyle.cssText = ""
  726. }
  727. }
  728. // 表格
  729. for (i=0; i < allTables.length; i++) {
  730. if (borderShown == "0") {
  731. allTables[i].runtimeStyle.border = "1px dotted #BFBFBF"
  732. } else {
  733. allTables[i].runtimeStyle.cssText = ""
  734. }
  735. allRows = allTables[i].rows
  736. for (y=0; y < allRows.length; y++) {
  737.   allCellsInRow = allRows[y].cells
  738. for (x=0; x < allCellsInRow.length; x++) {
  739. if (borderShown == "0") {
  740. allCellsInRow[x].runtimeStyle.border = "1px dotted #BFBFBF"
  741. } else {
  742. allCellsInRow[x].runtimeStyle.cssText = ""
  743. }
  744. }
  745. }
  746. }
  747. // 链接 A
  748. for (a=0; a < allLinks.length; a++) {
  749. if (borderShown == "0") {
  750. if (allLinks[a].href.toUpperCase() == "") {
  751. allLinks[a].runtimeStyle.borderBottom = "1px dashed #000000"
  752. }
  753. } else {
  754. allLinks[a].runtimeStyle.cssText = ""
  755. }
  756. }
  757. if (borderShown == "0") {
  758. borderShown = "1"
  759. } else {
  760. borderShown = "0"
  761. }
  762. scrollUp()
  763. }
  764. // 返回页面最上部
  765. function scrollUp() {
  766. eWebEditor.scrollBy(0,0);
  767. }
  768. // 缩放操作
  769. var nCurrZoomSize = 100;
  770. var aZoomSize = new Array(10, 25, 50, 75, 100, 150, 200, 500);
  771. function doZoom(size) {
  772. eWebEditor.document.body.runtimeStyle.zoom = size + "%";
  773. nCurrZoomSize = size;
  774. }
  775. // 拼写检查
  776. function spellCheck(){
  777. ShowDialog('dialog/spellcheck.htm', 300, 220, true)
  778. }
  779. // 查找替换
  780. function findReplace(){
  781. ShowDialog('dialog/findreplace.htm', 320, 165, true)
  782. }
  783. // 相对(absolute)或绝对位置(static)
  784. function absolutePosition(){
  785. var objReference = null;
  786. var RangeType = eWebEditor.document.selection.type;
  787. if (RangeType != "Control") return;
  788. var selectedRange = eWebEditor.document.selection.createRange();
  789. for (var i=0; i<selectedRange.length; i++){
  790. objReference = selectedRange.item(i);
  791. if (objReference.style.position != 'absolute') {
  792. objReference.style.position='absolute';
  793. }else{
  794. objReference.style.position='static';
  795. }
  796. }
  797. }
  798. // 上移(forward)或下移(backward)一层
  799. function zIndex(action){
  800. var objReference = null;
  801. var RangeType = eWebEditor.document.selection.type;
  802. if (RangeType != "Control") return;
  803. var selectedRange = eWebEditor.document.selection.createRange();
  804. for (var i=0; i<selectedRange.length; i++){
  805. objReference = selectedRange.item(i);
  806. if (action=='forward'){
  807. objReference.style.zIndex  +=1;
  808. }else{
  809. objReference.style.zIndex  -=1;
  810. }
  811. objReference.style.position='absolute';
  812. }
  813. }
  814. // 是否选中指定类型的控件
  815. function isControlSelected(tag){
  816. if (eWebEditor.document.selection.type == "Control") {
  817. var oControlRange = eWebEditor.document.selection.createRange();
  818. if (oControlRange(0).tagName.toUpperCase() == tag) {
  819. return true;
  820. }
  821. }
  822. return false;
  823. }
  824. // 改变编辑区高度
  825. function sizeChange(size){
  826. if (!BrowserInfo.IsIE55OrMore){
  827. alert("此功能需要IE5.5版本以上的支持!");
  828. return false;
  829. }
  830. for (var i=0; i<parent.frames.length; i++){
  831. if (parent.frames[i].document==self.document){
  832. var obj=parent.frames[i].frameElement;
  833. var height = parseInt(obj.offsetHeight);
  834. if (height+size>=300){
  835. obj.height=height+size;
  836. }
  837. break;
  838. }
  839. }
  840. }
  841. // 热点链接
  842. function mapEdit(){
  843. if (!validateMode()) return;
  844. var b = false;
  845. if (eWebEditor.document.selection.type == "Control") {
  846. var oControlRange = eWebEditor.document.selection.createRange();
  847. if (oControlRange(0).tagName.toUpperCase() == "IMG") {
  848. b = true;
  849. }
  850. }
  851. if (!b){
  852. alert("热点链接只能作用于图片");
  853. return;
  854. }
  855. window.open("dialog/map.htm", 'mapEdit'+sLinkFieldName, 'toolbar=no,location=no,directories=no,status=not,menubar=no,scrollbars=no,resizable=yes,width=450,height=300');
  856. }
  857. // 上传文件成功返回原文件名、保存后的文件名、保存后的路径文件名,提供接口
  858. function addUploadFile(originalFileName, saveFileName, savePathFileName){
  859. doInterfaceUpload(sLinkOriginalFileName, originalFileName);
  860. doInterfaceUpload(sLinkSaveFileName, saveFileName);
  861. doInterfaceUpload(sLinkSavePathFileName, savePathFileName);
  862. }
  863. // 文件上传成功接口操作
  864. function doInterfaceUpload(strLinkName, strValue){
  865. if (strValue=="") return;
  866. if (strLinkName){
  867. var objLinkUpload = parent.document.getElementsByName(strLinkName)[0];
  868. if (objLinkUpload){
  869. if (objLinkUpload.value!=""){
  870. objLinkUpload.value = objLinkUpload.value + "|";
  871. }
  872. objLinkUpload.value = objLinkUpload.value + strValue;
  873. objLinkUpload.fireEvent("onchange");
  874. }
  875. }
  876. }
  877. // 大文件内容自动拆分
  878. function splitTextField(objField, html) { 
  879. var strFieldName = objField.name;
  880. var objForm = objField.form;
  881. var objDocument = objField.document;
  882. objField.value = html;
  883. //表单限制值设定,限制值是102399,考虑到中文设为一半
  884. var FormLimit = 50000 ;
  885. // 再次处理时,先赋空值
  886. for (var i=1;i<objDocument.getElementsByName(strFieldName).length;i++) {
  887. objDocument.getElementsByName(strFieldName)[i].value = "";
  888. }
  889. //如果表单值超过限制,拆成多个对象
  890. if (html.length > FormLimit) { 
  891. objField.value = html.substr(0, FormLimit) ;
  892. html = html.substr(FormLimit) ;
  893. while (html.length > 0) { 
  894. var objTEXTAREA = objDocument.createElement("TEXTAREA") ;
  895. objTEXTAREA.name = strFieldName ;
  896. objTEXTAREA.style.display = "none" ;
  897. objTEXTAREA.value = html.substr(0, FormLimit) ;
  898. objForm.appendChild(objTEXTAREA) ;
  899. html = html.substr(FormLimit) ;
  900. // 远程上传
  901. function remoteUpload() { 
  902. if (sCurrMode=="TEXT") return;
  903. var objField = document.getElementsByName("eWebEditor_UploadText")[0];
  904. splitTextField(objField, getHTML());
  905. divProcessing.style.top = (document.body.clientHeight-parseFloat(divProcessing.style.height))/2;
  906. divProcessing.style.left = (document.body.clientWidth-parseFloat(divProcessing.style.width))/2;
  907. divProcessing.style.display = "";
  908. eWebEditor_UploadForm.submit();
  909. // 远程上传完成
  910. function remoteUploadOK() {
  911. divProcessing.style.display = "none";
  912. if (oLinkField){
  913. var oForm = oLinkField.form ;
  914. oForm.doneAutoRemote++;
  915. if (oForm.doneAutoRemote>=oForm.submitEditor.length){
  916. doSubmit();
  917. }
  918. }
  919. }
  920. // 修正Undo/Redo
  921. var history = new Object;
  922. history.data = [];
  923. history.position = 0;
  924. history.bookmark = [];
  925. // 保存历史
  926. function saveHistory() {
  927. if (bEditMode){
  928. if (history.data[history.position] != eWebEditor.document.body.innerHTML){
  929. var nBeginLen = history.data.length;
  930. var nPopLen = history.data.length - history.position;
  931. for (var i=1; i<nPopLen; i++){
  932. history.data.pop();
  933. history.bookmark.pop();
  934. }
  935. history.data[history.data.length] = eWebEditor.document.body.innerHTML;
  936. if (eWebEditor.document.selection.type != "Control"){
  937. history.bookmark[history.bookmark.length] = eWebEditor.document.selection.createRange().getBookmark();
  938. } else {
  939. var oControl = eWebEditor.document.selection.createRange();
  940. history.bookmark[history.bookmark.length] = oControl[0];
  941. }
  942. if (nBeginLen!=0){
  943. history.position++;
  944. }
  945. }
  946. }
  947. }
  948. // 初始历史
  949. function initHistory() {
  950. history.data.length = 0;
  951. history.bookmark.length = 0;
  952. history.position = 0;
  953. }
  954. // 返回历史
  955. function goHistory(value) {
  956. saveHistory();
  957. // undo
  958. if (value == -1){
  959. if (history.position > 0){
  960. eWebEditor.document.body.innerHTML = history.data[--history.position];
  961. setHistoryCursor();
  962. }
  963. // redo
  964. } else {
  965. if (history.position < history.data.length -1){
  966. eWebEditor.document.body.innerHTML = history.data[++history.position];
  967. setHistoryCursor();
  968. }
  969. }
  970. }
  971. // 设置当前书签
  972. function setHistoryCursor() {
  973. if (history.bookmark[history.position]){
  974. r = eWebEditor.document.body.createTextRange()
  975. if (history.bookmark[history.position] != "[object]"){
  976. if (r.moveToBookmark(history.bookmark[history.position])){
  977. r.collapse(false);
  978. r.select();
  979. }
  980. }
  981. }
  982. }
  983. // End Undo / Redo Fix
  984. // 工具栏事件发生
  985. function doToolbar(){
  986. if (bEditMode){
  987. saveHistory();
  988. }
  989. }