editor.js
上传用户:avia982301
上传日期:2008-10-30
资源大小:557k
文件大小:36k
源码类别:

.net编程

开发平台:

C#

  1. /*
  2. *######################################
  3. * eWebEditor v4.00 - Advanced online web based WYSIWYG HTML editor.
  4. * Copyright (c) 2003-2007 eWebSoft.com
  5. *
  6. * For further information go to http://www.ewebsoft.com/
  7. * This copyright notice MUST stay intact for use.
  8. *######################################
  9. */
  10. var sCurrMode = null;
  11. var bEditMode = null;
  12. var oLinkField = null;
  13. var BrowserInfo = new Object() ;
  14. BrowserInfo.MajorVer = navigator.appVersion.match(/MSIE (.)/)[1] ;
  15. BrowserInfo.MinorVer = navigator.appVersion.match(/MSIE ..(.)/)[1] ;
  16. BrowserInfo.IsIE55OrMore = BrowserInfo.MajorVer >= 6 || ( BrowserInfo.MajorVer >= 5 && BrowserInfo.MinorVer >= 5 ) ;
  17. config.IsSP2 = (navigator.userAgent.indexOf("SV1") != -1);
  18. window.onresize = initWidths;
  19. var yToolbars = new Array();
  20. var bInitialized = false;
  21. function document.onreadystatechange(){
  22. if (document.readyState!="complete") {return;}
  23. if (bInitialized) {return;}
  24. bInitialized = true;
  25. initHistory();
  26. initWidths();
  27. oLinkField = parent.document.getElementsByName(sLinkFieldName)[0];
  28. if ((!oLinkField)&&(config.ServerExt=="aspx")){
  29. oLinkField = getSpecialLinkFieldAspx("input");
  30. if (!oLinkField){
  31. oLinkField = getSpecialLinkFieldAspx("textarea");
  32. }
  33. }
  34. if (!BrowserInfo.IsIE55OrMore){
  35. config.InitMode = "TEXT";
  36. }
  37. if (ContentFlag.value=="0") { 
  38. ContentEdit.value = oLinkField.value;
  39. ContentLoad.value = oLinkField.value;
  40. ModeEdit.value = config.InitMode;
  41. ContentFlag.value = "1";
  42. }
  43. setMode(ModeEdit.value);
  44. setLinkedField() ;
  45. }
  46. function getSpecialLinkFieldAspx(s_Tag){
  47. var els = parent.document.getElementsByTagName(s_Tag);
  48. for(var i=0;i<els.length;i++){
  49. var s_Name = els[i].getAttribute("name");
  50. var n = s_Name.lastIndexOf("$");
  51. if (n<0){
  52. n = s_Name.lastIndexOf(":");
  53. }
  54. if (n >= 0){
  55. s_Name = s_Name.substr(n+1);
  56. if (s_Name==sLinkFieldName){
  57. return els[i];
  58. }
  59. }
  60. }
  61. return null;
  62. }
  63. function initWidths(){
  64. var i, curr;
  65. for (i=0; i<document.body.all.length;i++){
  66. curr=document.body.all[i];
  67. if (curr.className == "yToolbar"){
  68. InitTB(curr);
  69. yToolbars[yToolbars.length] = curr;
  70. }
  71. }
  72. }
  73. function InitBtn(btn) {
  74. btn.onmouseover = BtnMouseOver;
  75. btn.onmouseout = BtnMouseOut;
  76. btn.onmousedown = BtnMouseDown;
  77. btn.onmouseup = BtnMouseUp;
  78. btn.ondragstart = YCancelEvent;
  79. btn.onselectstart = YCancelEvent;
  80. btn.onselect = YCancelEvent;
  81. btn.YUSERONCLICK = btn.onclick;
  82. btn.onclick = YCancelEvent;
  83. btn.YINITIALIZED = true;
  84. return true;
  85. }
  86. function InitTB(y) {
  87. y.TBWidth = 0;
  88. if (! PopulateTB(y)) {return false;}
  89. y.style.posWidth = y.TBWidth;
  90. return true;
  91. }
  92. function YCancelEvent() {
  93. event.returnValue=false;
  94. event.cancelBubble=true;
  95. return false;
  96. }
  97. function BtnMouseOver() {
  98. if (event.srcElement.tagName != "IMG") {return false;}
  99. var image = event.srcElement;
  100. var element = image.parentElement;
  101. if (image.className == "Ico") {
  102. element.className = "BtnMouseOverUp";
  103. }else if (image.className == "IcoDown") {
  104. element.className = "BtnMouseOverDown";
  105. }
  106. event.cancelBubble = true;
  107. }
  108. function BtnMouseOut() {
  109. if (event.srcElement.tagName != "IMG") {
  110. event.cancelBubble = true;
  111. return false;
  112. }
  113. var image = event.srcElement;
  114. var element = image.parentElement;
  115. yRaisedElement = null;
  116. element.className = "Btn";
  117. image.className = "Ico";
  118. event.cancelBubble = true;
  119. }
  120. function BtnMouseDown() {
  121. if (event.srcElement.tagName != "IMG") {
  122. event.cancelBubble = true;
  123. event.returnValue=false;
  124. return false;
  125. }
  126. var image = event.srcElement;
  127. var element = image.parentElement;
  128. element.className = "BtnMouseOverDown";
  129. image.className = "IcoDown";
  130. event.cancelBubble = true;
  131. event.returnValue=false;
  132. return false;
  133. }
  134. function BtnMouseUp() {
  135. if (event.srcElement.tagName != "IMG") {
  136. event.cancelBubble = true;
  137. return false;
  138. }
  139. var image = event.srcElement;
  140. var element = image.parentElement;
  141. if (element.YUSERONCLICK) {
  142. eval(element.YUSERONCLICK + "anonymous()");
  143. }
  144. element.className = "BtnMouseOverUp";
  145. image.className = "Ico";
  146. event.cancelBubble = true;
  147. return false;
  148. }
  149. function PopulateTB(y) {
  150. var i, elements, element;
  151. elements = y.children;
  152. for (i=0; i<elements.length; i++) {
  153. element = elements[i];
  154. if (element.tagName == "SCRIPT" || element.tagName == "!") {continue;}
  155. switch (element.className) {
  156. case "Btn":
  157. if (element.YINITIALIZED == null) {
  158. if (! InitBtn(element)) {
  159. alert("Problem initializing:" + element.id);
  160. return false;
  161. }
  162. }
  163. element.style.posLeft = y.TBWidth;
  164. y.TBWidth += element.offsetWidth + 1;
  165. break;
  166. case "TBGen":
  167. element.style.posLeft = y.TBWidth;
  168. y.TBWidth += element.offsetWidth + 1;
  169. break;
  170. case "TBSep":
  171. element.style.posLeft = y.TBWidth + 2;
  172. y.TBWidth += 5;
  173. break;
  174. case "TBHandle":
  175. element.style.posLeft = 2;
  176. y.TBWidth += element.offsetWidth + 7;
  177. break;
  178. default:
  179. alert("Invalid class: " + element.className + " on Element: " + element.id + " <" + element.tagName + ">");
  180. return false;
  181. }
  182. }
  183. y.TBWidth += 1;
  184. return true;
  185. }
  186. function setLinkedField() {
  187. if (! oLinkField) {return ;}
  188. var oForm = oLinkField.form ;
  189. if (!oForm) {return ;}
  190. oForm.attachEvent("onsubmit", AttachSubmit) ;
  191. if (! oForm.submitEditor) oForm.submitEditor = new Array() ;
  192. oForm.submitEditor[oForm.submitEditor.length] = AttachSubmit ;
  193. if (! oForm.originalSubmit) {
  194. oForm.originalSubmit = oForm.submit ;
  195. oForm.submit = function() {
  196. if (this.submitEditor) {
  197. for (var i = 0 ; i < this.submitEditor.length ; i++) {
  198. this.submitEditor[i]() ;
  199. }
  200. }
  201. this.originalSubmit() ;
  202. }
  203. }
  204. oForm.attachEvent("onreset", AttachReset) ;
  205. if (! oForm.resetEditor) oForm.resetEditor = new Array() ;
  206. oForm.resetEditor[oForm.resetEditor.length] = AttachReset ;
  207. if (! oForm.originalReset) {
  208. oForm.originalReset = oForm.reset ;
  209. oForm.reset = function() {
  210. if (this.resetEditor) {
  211. for (var i = 0 ; i < this.resetEditor.length ; i++) {
  212. this.resetEditor[i]() ;
  213. }
  214. }
  215. this.originalReset() ;
  216. }
  217. }
  218. }
  219. function AttachSubmit() { 
  220. var oForm = oLinkField.form ;
  221. if (!oForm) {return;}
  222. var html = getHTML();
  223. ContentEdit.value = html;
  224. if (sCurrMode=="TEXT"){
  225. html = HTMLEncode(html);
  226. }
  227. splitTextField(oLinkField, html);
  228. function doSubmit(){
  229. var oForm = oLinkField.form ;
  230. if (!oForm) {return ;}
  231. oForm.submit();
  232. }
  233. function AttachReset() {
  234. if(bEditMode){
  235. eWebEditor.document.body.innerHTML = ContentLoad.value;
  236. }else{
  237. eWebEditor.document.body.innerText = ContentLoad.value;
  238. }
  239. }
  240. function onHelp(){
  241. showDialog('about.htm');
  242. return false;
  243. }
  244. function onPaste() {
  245. if (sCurrMode=="VIEW") {return false;}
  246. if (!history.saved){saveHistory();}
  247. if (sCurrMode=="EDIT"){
  248. var sHTML = GetClipboardHTML() ;
  249. if ((config.AutoDetectPasteFromWord=="1") && BrowserInfo.IsIE55OrMore) {
  250. var re = /<w[^>]* class="?MsoNormal"?/gi ;
  251. if ( re.test(sHTML)){
  252. if ( confirm( lang["MsgPasteWordConfirm"] ) ){
  253. cleanAndPaste( sHTML ) ;
  254. saveHistory();
  255. return false ;
  256. }else{
  257. var arr = showModalDialog("dialog/localupload.htm?action=paste", window, "dialogWidth:0px;dialogHeight:0px;help:no;scroll:no;status:no");
  258. if (arr){
  259. saveHistory();
  260. return false;
  261. }
  262. }
  263. }
  264. }
  265. if(config.BaseHref!=""){
  266. eWebEditor.document.selection.createRange().pasteHTML(sHTML) ;
  267. return false;
  268. }else{
  269. return true;
  270. }
  271. }else{
  272. eWebEditor.document.selection.createRange().pasteHTML(HTMLEncode( clipboardData.getData("Text"))) ;
  273. saveHistory();
  274. return false;
  275. }
  276. }
  277. function onKeyDown(event){
  278. var n_KeyCode = event.keyCode;
  279. var s_Key = String.fromCharCode(n_KeyCode).toUpperCase();
  280. // F2
  281. if (n_KeyCode==113){
  282. showBorders();
  283. return false;
  284. }
  285. if (event.ctrlKey){
  286. // Ctrl+Enter
  287. if (n_KeyCode==10){
  288. doSubmit();
  289. return false;
  290. }
  291. // Ctrl++
  292. if (s_Key=="+"){
  293. sizeChange(300);
  294. return false;
  295. }
  296. // Ctrl+-
  297. if (s_Key=="-"){
  298. sizeChange(-300);
  299. return false;
  300. }
  301. // Ctrl+1
  302. if (s_Key=="1"){
  303. setMode("CODE");
  304. return false;
  305. }
  306. // Ctrl+2
  307. if (s_Key=="2"){
  308. setMode("EDIT");
  309. return false;
  310. }
  311. // Ctrl+3
  312. if (s_Key=="3"){
  313. setMode("TEXT");
  314. return false;
  315. }
  316. // Ctrl+4
  317. if (s_Key=="4"){
  318. setMode("VIEW");
  319. return false;
  320. }
  321. }
  322. switch(sCurrMode){
  323. case "VIEW":
  324. return true;
  325. break;
  326. case "EDIT":
  327. if (event.ctrlKey){
  328. // Ctrl+D
  329. if (s_Key == "D"){
  330. PasteWord();
  331. return false;
  332. }
  333. // Ctrl+R
  334. if (s_Key == "R"){
  335. findReplace();
  336. return false;
  337. }
  338. // Ctrl+Z
  339. if (s_Key == "Z"){
  340. goHistory(-1);
  341. return false;
  342. }
  343. // Ctrl+Y
  344. if (s_Key == "Y"){
  345. goHistory(1);
  346. return false;
  347. }
  348. }
  349. break;
  350. default:
  351. if (n_KeyCode==13){
  352. if (!history.saved){saveHistory();}
  353. history.saved = false;
  354. var sel = eWebEditor.document.selection.createRange();
  355. sel.pasteHTML("<BR>");
  356. event.cancelBubble = true;
  357. event.returnValue = false;
  358. sel.select();
  359. sel.moveEnd("character", 1);
  360. sel.moveStart("character", 1);
  361. sel.collapse(false);
  362. return false;
  363. }
  364. if (event.ctrlKey){
  365. // Ctrl+B,I,U
  366. if ((s_Key == "B")||(s_Key == "I")||(s_Key == "U")){
  367. return false;
  368. }
  369. // Ctrl+Z
  370. if (s_Key == "Z"){
  371. goHistory(-1);
  372. return false;
  373. }
  374. // Ctrl+Y
  375. if (s_Key == "Y"){
  376. goHistory(1);
  377. return false;
  378. }
  379. }
  380. break;
  381. }
  382. if ((n_KeyCode==13)||(n_KeyCode==8)||(n_KeyCode==46)){ //Enter,Backspace,Del
  383. if (!history.saved){saveHistory();}
  384. history.saved = false;
  385. }else if ((n_KeyCode>=33)&&(n_KeyCode<=40)){ //PageUp,PageDown,End,Home,Left,Up,Right,Down
  386. if (!history.saved){saveHistory();}
  387. }else if (!event.ctrlKey && s_Key!="A" && s_Key!="F"){ //Ctrl+A,F
  388. history.saved = false;
  389. }
  390. return true;
  391. }
  392. var oResizing = new Object;
  393. function onMouseDown(){
  394. oResizing.El = null;
  395. if (eWebEditor.document.selection.type == "Control") {
  396. var oControlRange = eWebEditor.document.selection.createRange();
  397. oResizing.El = oControlRange(0);
  398. oResizing.W = oResizing.El.style.width;
  399. oResizing.H = oResizing.El.style.height;
  400. }
  401. if (!history.saved){saveHistory();}
  402. }
  403. function onMouseUp(){
  404. if (oResizing.El){
  405. if ((oResizing.El.style.width!=oResizing.W)||(oResizing.El.style.height!=oResizing.H)){
  406. saveHistory();
  407. }
  408. }
  409. }
  410. function doDragEnd(){
  411. if (!history.saved){saveHistory();}
  412. var oSelection = eWebEditor.document.selection.createRange();
  413. var sRangeType = eWebEditor.document.selection.type;
  414. if (sRangeType == "Control") {
  415. var oControl = oSelection.item(0);
  416. if (oControl.tagName == "IMG"){
  417. oControl.src = FullPath2SetPath(oControl.src);
  418. }
  419. }
  420. if (sRangeType == "Text") {
  421. var els = eWebEditor.document.body.getElementsByTagName("IMG");
  422. var oRngTemp = eWebEditor.document.body.createTextRange();
  423. for(var i=0;i<els.length;i++){
  424. oRngTemp.moveToElementText(els(i));
  425. if (oSelection.inRange(oRngTemp)){
  426. els(i).src = FullPath2SetPath(els(i).src)
  427. }
  428. }
  429. }
  430. saveHistory();
  431. return true;
  432. }
  433. function FullPath2SetPath(url){
  434. if (url.indexOf("://")<0){return url;}
  435. var s_SitePath = getSitePath();
  436. if (url.indexOf(s_SitePath) < 0){return url;}
  437. switch(config.BaseUrl){
  438. case "0":
  439. var s_BaseHref = s_SitePath + config.BaseHref;
  440. return url.substr(s_BaseHref.length);
  441. break;
  442. case "1":
  443. return url.substr(s_SitePath.length);
  444. break;
  445. case "2":
  446. return url;
  447. break;
  448. }
  449. }
  450. function getSitePath(){
  451. var sSitePath = document.location.protocol + "//" + document.location.host;
  452. if (sSitePath.substr(sSitePath.length-3) == ":80"){
  453. sSitePath = sSitePath.substring(0,sSitePath.length-3);
  454. }
  455. return sSitePath;
  456. }
  457. function GetClipboardHTML() {
  458. var oDiv = document.getElementById("eWebEditor_Temp_HTML")
  459. oDiv.innerHTML = "" ;
  460. var oTextRange = document.body.createTextRange() ;
  461. oTextRange.moveToElementText(oDiv) ;
  462. oTextRange.execCommand("Paste") ;
  463. var sData = oDiv.innerHTML ;
  464. oDiv.innerHTML = "" ;
  465. return sData ;
  466. }
  467. function cleanAndPaste( html ) {
  468. html = html.replace(/</?SPAN[^>]*>/gi, "" );
  469. html = html.replace(/<(w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
  470. html = html.replace(/<(w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ;
  471. html = html.replace(/<(w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
  472. html = html.replace(/<\??xml[^>]*>/gi, "") ;
  473. html = html.replace(/</?w+:[^>]*>/gi, "") ;
  474. html = html.replace(/&nbsp;/, " " );
  475. insertHTML( html ) ;
  476. }
  477. function insertHTML(html) {
  478. if (isModeView()) {return false;}
  479. eWebEditor.focus();
  480. if (eWebEditor.document.selection.type.toLowerCase() != "none"){
  481. eWebEditor.document.selection.clear() ;
  482. }
  483. if (sCurrMode!="EDIT"){
  484. html=HTMLEncode(html);
  485. }
  486. eWebEditor.document.selection.createRange().pasteHTML(html) ; 
  487. }
  488. function setHTML(html, b_NotSaveHistory) {
  489. ContentEdit.value = html;
  490. switch (sCurrMode){
  491. case "CODE":
  492. eWebEditor.document.designMode="On";
  493. eWebEditor.document.open();
  494. eWebEditor.document.write(getStyleEditorHeader());
  495. eWebEditor.document.body.innerText=html;
  496. eWebEditor.document.body.contentEditable="true";
  497. eWebEditor.document.close();
  498. bEditMode=false;
  499. break;
  500. case "EDIT":
  501. eWebEditor.document.designMode="On";
  502. eWebEditor.document.open();
  503. eWebEditor.document.write(getStyleEditorHeader()+html);
  504. eWebEditor.document.body.contentEditable="true";
  505. eWebEditor.document.execCommand("2D-Position",true,true);
  506. eWebEditor.document.execCommand("MultipleSelection", true, true);
  507. eWebEditor.document.execCommand("LiveResize", true, true);
  508. eWebEditor.document.close();
  509. doZoom(nCurrZoomSize);
  510. bEditMode=true;
  511. break;
  512. case "TEXT":
  513. eWebEditor.document.designMode="On";
  514. eWebEditor.document.open();
  515. eWebEditor.document.write(getStyleEditorHeader());
  516. eWebEditor.document.body.innerText=html;
  517. eWebEditor.document.body.contentEditable="true";
  518. eWebEditor.document.close();
  519. bEditMode=false;
  520. break;
  521. case "VIEW":
  522. eWebEditor.document.designMode="off";
  523. eWebEditor.document.open();
  524. eWebEditor.document.write(getStyleEditorHeader()+html);
  525. eWebEditor.document.body.contentEditable="false";
  526. eWebEditor.document.close();
  527. bEditMode=false;
  528. break;
  529. }
  530. eWebEditor.document.body.onpaste = onPaste ;
  531. eWebEditor.document.body.onhelp = onHelp ;
  532. eWebEditor.document.body.ondragend = new Function("return doDragEnd();");
  533. eWebEditor.document.onkeydown = new Function("return onKeyDown(eWebEditor.event);");
  534. eWebEditor.document.oncontextmenu=new Function("return showContextMenu(eWebEditor.event);");
  535. eWebEditor.document.onmousedown = new Function("return onMouseDown();");
  536. eWebEditor.document.onmouseup = new Function("return onMouseUp();");
  537. if ((borderShown != "0")&&bEditMode) {
  538. borderShown = "0";
  539. showBorders();
  540. }
  541. if (!b_NotSaveHistory){
  542. saveHistory();
  543. }
  544. }
  545. function getHTML() {
  546. var html;
  547. if((sCurrMode=="EDIT")||(sCurrMode=="VIEW")){
  548. html = eWebEditor.document.body.innerHTML;
  549. }else{
  550. html = eWebEditor.document.body.innerText;
  551. }
  552. if (sCurrMode!="TEXT"){
  553. if ((html.toLowerCase()=="<p>&nbsp;</p>")||(html.toLowerCase()=="<p></p>")){
  554. html = "";
  555. }
  556. }
  557. return html;
  558. }
  559. function appendHTML(html) {
  560. if(isModeView()){return false;}
  561. if(sCurrMode=="EDIT"){
  562. eWebEditor.document.body.innerHTML += html;
  563. }else{
  564. eWebEditor.document.body.innerText += html;
  565. }
  566. }
  567. function PasteWord(){
  568. if(!validateMode()){return;}
  569. eWebEditor.focus();
  570. if (!history.saved){saveHistory();}
  571. if(BrowserInfo.IsIE55OrMore){
  572. cleanAndPaste( GetClipboardHTML() ) ;
  573. saveHistory();
  574. }else if(confirm(lang["MsgNotCompatiblePaste"])){
  575. format("paste") ;
  576. }
  577. eWebEditor.focus();
  578. }
  579. function PasteText(){
  580. if(!validateMode()){return;}
  581. eWebEditor.focus();
  582. if (!history.saved){saveHistory();}
  583. var sText = HTMLEncode( clipboardData.getData("Text") ) ;
  584. insertHTML(sText);
  585. saveHistory();
  586. eWebEditor.focus();
  587. }
  588. function validateMode() {
  589. if(sCurrMode=="EDIT"){return true;}
  590. alert(lang["MsgOnlyInEditMode"]);
  591. eWebEditor.focus();
  592. return false;
  593. }
  594. function isModeView(){
  595. if (sCurrMode=="VIEW"){
  596. alert(lang["MsgCanotSetInViewMode"]);
  597. return true;
  598. }
  599. return false;
  600. }
  601. function format(what,opt) {
  602. if(!validateMode()){return;}
  603. eWebEditor.focus();
  604. if (!history.saved){saveHistory();}
  605. if(opt=="RemoveFormat"){
  606. what=opt;
  607. opt=null;
  608. }
  609. if(opt==null) {
  610. var s = "";
  611. switch(what.toLowerCase()){
  612. case "justifyleft":
  613. s = "left";
  614. break;
  615. case "justifycenter":
  616. s = "center"
  617. break;
  618. case "justifyright":
  619. s = "right"
  620. break;
  621. }
  622. var b = false;
  623. if (s){
  624. var sel = eWebEditor.document.selection.createRange();
  625. sel.type = eWebEditor.document.selection.type;
  626. if (sel.type=="Control"){
  627. var oControl = sel.item(0);
  628. try{
  629. oControl.align = s;
  630. b = true;
  631. }catch(e){}
  632. }
  633. }
  634. if (!b){
  635. eWebEditor.document.execCommand(what);
  636. }
  637. }else{
  638. eWebEditor.document.execCommand(what,"",opt);
  639. }
  640. saveHistory();
  641. eWebEditor.focus();
  642. }
  643. function formatFont(what, v){
  644. if (!history.saved){saveHistory();}
  645. eWebEditor.document.execCommand("fontname","","eWebEditor_Temp_FontName");
  646. var a_Font = eWebEditor.document.body.getElementsByTagName("FONT");
  647. for (var i=0; i<a_Font.length; i++){
  648. var o_Font = a_Font[i];
  649. if (o_Font.getAttribute("face") == "eWebEditor_Temp_FontName"){
  650. delInFont(o_Font, what);
  651. setStyleValue(o_Font, what, v);
  652. o_Font.removeAttribute("face");
  653. }
  654. }
  655. saveHistory();
  656. }
  657. function setStyleValue(obj, what, v){
  658. switch(what){
  659. case "fontname":
  660. obj.style.fontFamily = v;
  661. break;
  662. case "fontsize":
  663. obj.style.fontSize = v;
  664. break;
  665. default:
  666. break;
  667. }
  668. }
  669. function delInFont(obj, what){
  670. var o_Children = obj.children;
  671. for (var j=0; j<o_Children.length; j++){
  672. setStyleValue(o_Children[j], what, "");
  673. delInFont(o_Children[j], what);
  674. if (o_Children[j].style.cssText==""){
  675. if ((o_Children[j].tagName=="FONT") || (o_Children[j].tagName=="SPAN")){
  676. o_Children[j].outerHTML = o_Children[j].innerHTML;
  677. }
  678. }
  679. }
  680. }
  681. function VerifyFocus() {
  682. if ( eWebEditor )
  683. eWebEditor.focus();
  684. }
  685. function setMode(NewMode){
  686. if (NewMode==sCurrMode){return;}
  687. if (!BrowserInfo.IsIE55OrMore){
  688. if ((NewMode=="CODE") || (NewMode=="EDIT") || (NewMode=="VIEW")){
  689. alert(lang["MsgNotCompatibleHtml"]);
  690. return false;
  691. }
  692. }
  693. if (NewMode=="TEXT"){
  694. if (sCurrMode==ModeEdit.value){
  695. if (!confirm(lang["MsgHtmlToText"])){
  696. return false;
  697. }
  698. }
  699. }
  700. var sBody = "";
  701. switch(sCurrMode){
  702. case "CODE":
  703. if (NewMode=="TEXT"){
  704. eWebEditor_Temp_HTML.innerHTML = eWebEditor.document.body.innerText;
  705. sBody = eWebEditor_Temp_HTML.innerText;
  706. }else{
  707. sBody = eWebEditor.document.body.innerText;
  708. }
  709. break;
  710. case "TEXT":
  711. sBody = eWebEditor.document.body.innerText;
  712. sBody = HTMLEncode(sBody);
  713. break;
  714. case "EDIT":
  715. case "VIEW":
  716. if (NewMode=="TEXT"){
  717. sBody = eWebEditor.document.body.innerText;
  718. }else{
  719. sBody = eWebEditor.document.body.innerHTML;
  720. }
  721. break;
  722. default:
  723. sBody = ContentEdit.value;
  724. break;
  725. }
  726. try{
  727. document.all["eWebEditor_CODE"].className = "StatusBarBtnOff";
  728. document.all["eWebEditor_EDIT"].className = "StatusBarBtnOff";
  729. document.all["eWebEditor_TEXT"].className = "StatusBarBtnOff";
  730. document.all["eWebEditor_VIEW"].className = "StatusBarBtnOff";
  731. document.all["eWebEditor_"+NewMode].className = "StatusBarBtnOn";
  732. }
  733. catch(e){
  734. }
  735. sCurrMode = NewMode;
  736. ModeEdit.value = NewMode;
  737. setHTML(sBody);
  738. disableChildren(eWebEditor_Toolbar);
  739. }
  740. function disableChildren(obj){
  741. if (obj){
  742. obj.disabled=(!bEditMode);
  743. for (var i=0; i<obj.children.length; i++){
  744. disableChildren(obj.children[i]);
  745. }
  746. }
  747. }
  748. function showDialog(url, optValidate){
  749. var sName;
  750. var nIndex = url.indexOf(".");
  751. if (nIndex<0){
  752. sName = url;
  753. url = url + ".htm";
  754. }else{
  755. sName = url.substring(0, nIndex);
  756. }
  757. url = "dialog/" + url;
  758. sName = sName.toLowerCase();
  759. url = url.toLowerCase();
  760. if (optValidate) {
  761. if (!validateMode()) {return;}
  762. }
  763. eWebEditor.focus();
  764. if (!history.saved){saveHistory();}
  765. var arr = showModalDialog(url, window, "dialogWidth:0px;dialogHeight:0px;help:no;scroll:no;status:no");
  766. saveHistory();
  767. eWebEditor.focus();
  768. }
  769. function Maximize() {
  770. if (!validateMode()) {return;}
  771. saveHistory();
  772. 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');
  773. }
  774. function createLink(){
  775. if (!validateMode()) {return;}
  776. if (eWebEditor.document.selection.type == "Control") {
  777. var oControlRange = eWebEditor.document.selection.createRange();
  778. if (oControlRange(0).tagName.toUpperCase() != "IMG") {
  779. alert(lang["MsgHylnkLimit"]);
  780. return;
  781. }
  782. }
  783. showDialog("hyperlink.htm", true);
  784. }
  785. function HTMLEncode(text){
  786. text = text.replace(/&/g, "&amp;") ;
  787. text = text.replace(/"/g, "&quot;") ;
  788. text = text.replace(/</g, "&lt;") ;
  789. text = text.replace(/>/g, "&gt;") ;
  790. text = text.replace(/ /g,"&nbsp;");
  791. text = text.replace(/n/g,"<br>");
  792. text = text.replace(/t/g,"&nbsp;&nbsp;&nbsp;&nbsp;");
  793. return text;
  794. }
  795. function insert(what) {
  796. if (!validateMode()) {return;}
  797. eWebEditor.focus();
  798. saveHistory();
  799. var sel = eWebEditor.document.selection.createRange();
  800. switch(what){
  801. case "excel":
  802. 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:Verdana,Arial,Helvetica,sans-serif;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>");
  803. break;
  804. case "nowdate":
  805. var d = new Date();
  806. insertHTML(d.toLocaleDateString());
  807. break;
  808. case "nowtime":
  809. var d = new Date();
  810. insertHTML(d.toLocaleTimeString());
  811. break;
  812. case "br":
  813. insertHTML("<br>")
  814. break;
  815. case "code":
  816. 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">'+lang["HtmlCode"]+'</font><br>'+HTMLEncode(sel.text)+'</td></tr></table>');
  817. break;
  818. case "quote":
  819. 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">'+lang["HtmlQuote"]+'</font><br>'+HTMLEncode(sel.text)+'</td></tr></table>');
  820. break;
  821. case "big":
  822. insertHTML("<big>" + sel.text + "</big>");
  823. break;
  824. case "small":
  825. insertHTML("<small>" + sel.text + "</small>");
  826. break;
  827. default:
  828. alert(lang["ErrParam"]);
  829. break;
  830. }
  831. sel=null;
  832. }
  833. var borderShown = config.ShowBorder;
  834. function showBorders() {
  835. if (!validateMode()) {return;}
  836. var allForms = eWebEditor.document.body.getElementsByTagName("FORM");
  837. var allInputs = eWebEditor.document.body.getElementsByTagName("INPUT");
  838. var allTables = eWebEditor.document.body.getElementsByTagName("TABLE");
  839. var allLinks = eWebEditor.document.body.getElementsByTagName("A");
  840. // form
  841. for (a=0; a < allForms.length; a++) {
  842. if (borderShown == "0") {
  843. allForms[a].runtimeStyle.border = "1px dotted #FF0000"
  844. } else {
  845. allForms[a].runtimeStyle.cssText = ""
  846. }
  847. }
  848. // input
  849. for (b=0; b < allInputs.length; b++) {
  850. if (borderShown == "0") {
  851. if (allInputs[b].type.toUpperCase() == "HIDDEN") {
  852. allInputs[b].runtimeStyle.border = "1px dashed #000000"
  853. allInputs[b].runtimeStyle.width = "15px"
  854. allInputs[b].runtimeStyle.height = "15px"
  855. allInputs[b].runtimeStyle.backgroundColor = "#FDADAD"
  856. allInputs[b].runtimeStyle.color = "#FDADAD"
  857. }
  858. } else {
  859. if (allInputs[b].type.toUpperCase() == "HIDDEN")
  860. allInputs[b].runtimeStyle.cssText = ""
  861. }
  862. }
  863. // table
  864. for (i=0; i < allTables.length; i++) {
  865. if (borderShown == "0") {
  866. allTables[i].runtimeStyle.border = "1px dotted #BFBFBF"
  867. } else {
  868. allTables[i].runtimeStyle.cssText = ""
  869. }
  870. allRows = allTables[i].rows
  871. for (y=0; y < allRows.length; y++) {
  872.   allCellsInRow = allRows[y].cells
  873. for (x=0; x < allCellsInRow.length; x++) {
  874. if (borderShown == "0") {
  875. allCellsInRow[x].runtimeStyle.border = "1px dotted #BFBFBF"
  876. } else {
  877. allCellsInRow[x].runtimeStyle.cssText = ""
  878. }
  879. }
  880. }
  881. }
  882. // A
  883. for (a=0; a < allLinks.length; a++) {
  884. if (borderShown == "0") {
  885. if (allLinks[a].href.toUpperCase() == "") {
  886. allLinks[a].runtimeStyle.borderBottom = "1px dashed #000000"
  887. }
  888. } else {
  889. allLinks[a].runtimeStyle.cssText = ""
  890. }
  891. }
  892. if (borderShown == "0") {
  893. borderShown = "1"
  894. } else {
  895. borderShown = "0"
  896. }
  897. scrollUp()
  898. }
  899. function scrollUp() {
  900. eWebEditor.scrollBy(0,0);
  901. }
  902. var nCurrZoomSize = 100;
  903. var aZoomSize = new Array(10, 25, 50, 75, 100, 150, 200, 500);
  904. function doZoom(size) {
  905. eWebEditor.document.body.runtimeStyle.zoom = size + "%";
  906. nCurrZoomSize = size;
  907. }
  908. function findReplace(){
  909. showDialog('findreplace.htm', true)
  910. }
  911. function absolutePosition(){
  912. var objReference = null;
  913. var RangeType = eWebEditor.document.selection.type;
  914. if (RangeType != "Control") {return;}
  915. var selectedRange = eWebEditor.document.selection.createRange();
  916. for (var i=0; i<selectedRange.length; i++){
  917. objReference = selectedRange.item(i);
  918. if (objReference.style.position != 'relative') {
  919. objReference.style.position='relative';
  920. }else{
  921. objReference.style.position='static';
  922. }
  923. }
  924. }
  925. function zIndex(action){
  926. var objReference = null;
  927. var RangeType = eWebEditor.document.selection.type;
  928. if (RangeType != "Control") {return;}
  929. var selectedRange = eWebEditor.document.selection.createRange();
  930. for (var i=0; i<selectedRange.length; i++){
  931. objReference = selectedRange.item(i);
  932. if (action=='forward'){
  933. objReference.style.zIndex  +=1;
  934. }else{
  935. objReference.style.zIndex  -=1;
  936. }
  937. objReference.style.position='relative';
  938. }
  939. }
  940. function isControlSelected(tag){
  941. if (tag){
  942. if (eWebEditor.document.selection.type == "Control") {
  943. var oControlRange = eWebEditor.document.selection.createRange();
  944. if (oControlRange(0).tagName.toUpperCase() == tag) {
  945. return true;
  946. }
  947. }
  948. }
  949. return false;
  950. }
  951. function findParentElement(tag) {
  952. var el = null;
  953. if (eWebEditor.document.selection.type != "Control") {
  954. el = eWebEditor.document.selection.createRange().parentElement();
  955. while (el.tagName.toUpperCase() != tag){
  956. el = el.parentElement;
  957. if (el == null){
  958.                 break;
  959. }
  960. }
  961. }
  962. return el;
  963. }
  964. function sizeChange(size){
  965. if (!BrowserInfo.IsIE55OrMore){
  966. alert(lang["MsgNotCompatibleFunc"]);
  967. return false;
  968. }
  969. for (var i=0; i<parent.frames.length; i++){
  970. if (parent.frames[i].document==self.document){
  971. var obj=parent.frames[i].frameElement;
  972. var height = parseInt(obj.offsetHeight);
  973. if (height+size>=300){
  974. obj.height=height+size;
  975. }
  976. break;
  977. }
  978. }
  979. }
  980. function mapEdit(){
  981. if (!validateMode()) {return;}
  982. saveHistory();
  983. var b = false;
  984. if (eWebEditor.document.selection.type == "Control") {
  985. var oControlRange = eWebEditor.document.selection.createRange();
  986. if (oControlRange(0).tagName.toUpperCase() == "IMG") {
  987. b = true;
  988. }
  989. }
  990. if (!b){
  991. alert(lang["MsgMapLimit"]);
  992. return;
  993. }
  994. 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");
  995. }
  996. function paragraphAttr(){
  997. if (!validateMode()) {return;}
  998. eWebEditor.focus();
  999. if (!tagInSelection("P")){
  1000. alert(lang["MsgNotParagraph"]);
  1001. return;
  1002. }
  1003. showDialog('paragraph.htm', true);
  1004. }
  1005. function tagInSelection(tag){
  1006. var sel = eWebEditor.document.selection.createRange();
  1007. sel.type = eWebEditor.document.selection.type;
  1008. if (sel.type!="Control"){
  1009. var oBody = eWebEditor.document.body;
  1010. var aAllEl = oBody.getElementsByTagName(tag);
  1011. var aSelEl = new Array();
  1012. var oRngTemp = oBody.createTextRange();
  1013. for(var i=0;i<aAllEl.length;i++){
  1014. oRngTemp.moveToElementText(aAllEl(i));
  1015. if (sel.inRange(oRngTemp)){
  1016. aSelEl[aSelEl.length] = aAllEl[i];
  1017. }else{
  1018. if ( ((sel.compareEndPoints("StartToEnd",oRngTemp)<0)&&(sel.compareEndPoints("StartToStart",oRngTemp)>0)) || ((sel.compareEndPoints("EndToStart",oRngTemp)>0)&&(sel.compareEndPoints("EndToEnd",oRngTemp)<0)) ){
  1019. aSelEl[aSelEl.length] = aAllEl[i];
  1020. }
  1021. }
  1022. }
  1023. if (aSelEl.length>0){
  1024. return true;
  1025. }
  1026. }
  1027. return false;
  1028. }
  1029. function addUploadFile(originalFileName, saveFileName, savePathFileName){
  1030. doInterfaceUpload(sLinkOriginalFileName, originalFileName);
  1031. doInterfaceUpload(sLinkSaveFileName, saveFileName);
  1032. doInterfaceUpload(sLinkSavePathFileName, savePathFileName);
  1033. }
  1034. function doInterfaceUpload(strLinkName, strValue){
  1035. if (strValue=="") {return;}
  1036. if (strLinkName){
  1037. var objLinkUpload = parent.document.getElementsByName(strLinkName)[0];
  1038. if (objLinkUpload){
  1039. if (objLinkUpload.value!=""){
  1040. objLinkUpload.value = objLinkUpload.value + "|";
  1041. }
  1042. objLinkUpload.value = objLinkUpload.value + strValue;
  1043. objLinkUpload.fireEvent("onchange");
  1044. }
  1045. }
  1046. }
  1047. function splitTextField(objField, html) { 
  1048. objField.value = html;
  1049. if (config.ServerExt != "asp") {return;}
  1050. var strFieldName = objField.name;
  1051. var objForm = objField.form;
  1052. var objDocument = objField.document;
  1053. var FormLimit = 50000 ;
  1054. for (var i=1;i<objDocument.getElementsByName(strFieldName).length;i++) {
  1055. objDocument.getElementsByName(strFieldName)[i].value = "";
  1056. }
  1057. if (html.length > FormLimit) { 
  1058. objField.value = html.substr(0, FormLimit) ;
  1059. html = html.substr(FormLimit) ;
  1060. while (html.length > 0) { 
  1061. var objTEXTAREA = objDocument.createElement("TEXTAREA") ;
  1062. objTEXTAREA.name = strFieldName ;
  1063. objTEXTAREA.style.display = "none" ;
  1064. objTEXTAREA.value = html.substr(0, FormLimit) ;
  1065. objForm.appendChild(objTEXTAREA) ;
  1066. html = html.substr(FormLimit) ;
  1067. }
  1068. var sEventUploadAfter;
  1069. function remoteUpload(strEventUploadAfter) { 
  1070. if (config.AutoRemote!="1") {return;}
  1071. if (sCurrMode=="TEXT") {return;}
  1072. sEventUploadAfter = strEventUploadAfter;
  1073. var objField = document.getElementsByName("eWebEditor_UploadText")[0];
  1074. splitTextField(objField, getHTML());
  1075. divProcessing.style.top = (document.body.clientHeight-parseFloat(divProcessing.style.height))/2;
  1076. divProcessing.style.left = (document.body.clientWidth-parseFloat(divProcessing.style.width))/2;
  1077. divProcessing.style.display = "";
  1078. eWebEditor_UploadForm.submit();
  1079. function remoteUploadOK() {
  1080. divProcessing.style.display = "none";
  1081. if (oLinkField){
  1082. if (sEventUploadAfter){
  1083. eval("parent."+sEventUploadAfter);
  1084. }
  1085. }
  1086. }
  1087. var history = new Object;
  1088. history.data = [];
  1089. history.position = 0;
  1090. history.bookmark = [];
  1091. history.saved = false;
  1092. function saveHistory() {
  1093. history.saved = true;
  1094. var html = getHTML();
  1095. if (history.data[history.position] != html){
  1096. var nBeginLen = history.data.length;
  1097. var nPopLen = history.data.length - history.position;
  1098. for (var i=1; i<nPopLen; i++){
  1099. history.data.pop();
  1100. history.bookmark.pop();
  1101. }
  1102. history.data[history.data.length] = html;
  1103. if (eWebEditor.document.selection.type != "Control"){
  1104. history.bookmark[history.bookmark.length] = eWebEditor.document.selection.createRange().getBookmark();
  1105. } else {
  1106. var oRng = eWebEditor.document.selection.createRange();
  1107. var el = oRng.item(0);
  1108. history.bookmark[history.bookmark.length] = "[object]|" + el.tagName + "|" + getElementTagIndex(el);
  1109. }
  1110. if (nBeginLen!=0){
  1111. history.position++;
  1112. }
  1113. }
  1114. }
  1115. function getElementTagIndex(el){
  1116. var els = eWebEditor.document.body.getElementsByTagName(el.tagName);
  1117. for (var i=0; i<els.length; i++){
  1118. if (els[i]==el){
  1119. return i;
  1120. }
  1121. }
  1122. return null;
  1123. }
  1124. function initHistory() {
  1125. history.data.length = 0;
  1126. history.bookmark.length = 0;
  1127. history.position = 0;
  1128. history.saved = false;
  1129. }
  1130. function goHistory(value) {
  1131. if (!history.saved){saveHistory();}
  1132. //eWebEditor.focus();
  1133. // undo
  1134. if (value == -1){
  1135. if (history.position > 0){
  1136. history.position = history.position - 1;
  1137. setHTML(history.data[history.position], true);
  1138. setHistoryCursor();
  1139. }
  1140. // redo
  1141. } else {
  1142. if (history.position < history.data.length -1){
  1143. history.position = history.position + 1;
  1144. setHTML(history.data[history.position], true);
  1145. setHistoryCursor();
  1146. }
  1147. }
  1148. eWebEditor.focus();
  1149. }
  1150. function setHistoryCursor() {
  1151. var s_Bookmark = history.bookmark[history.position];
  1152. if (s_Bookmark){
  1153. //eWebEditor_Toolbar.focus();
  1154. eWebEditor_Layout.focus();
  1155. if (s_Bookmark.substring(0,8) != "[object]"){
  1156. r = eWebEditor.document.body.createTextRange();
  1157. if (r.moveToBookmark(history.bookmark[history.position])){
  1158. //r.duplicate();
  1159. //r.collapse(false);
  1160. r.select();
  1161. }
  1162. }else{
  1163. if (sCurrMode=="EDIT"){
  1164. r = eWebEditor.document.body.createControlRange();
  1165. var a = s_Bookmark.split("|");
  1166. var els = eWebEditor.document.body.getElementsByTagName(a[1]);
  1167. var el = els[a[2]];
  1168. r.addElement(el);
  1169. r.select();
  1170. }
  1171. }
  1172. }
  1173. }
  1174. function getStyleEditorHeader(){
  1175. if ((sCurrMode=="EDIT") || (sCurrMode=="VIEW")){
  1176. return config.StyleEditorHeader1 + sExtCSS + config.StyleEditorHeader2;
  1177. }else{
  1178. return config.StyleEditorHeader1 + config.StyleEditorHeader2;
  1179. }
  1180. }
  1181. // n_Type  -  0:en; 1:chs; 2:en+chs(1);3,en+chs(2)
  1182. function getCount(n_Type){
  1183. var str=getText();
  1184. str = str.replace(/n/g,"");
  1185. str = str.replace(/r/g,"");
  1186. var l=str.length;
  1187. var n=0;
  1188.     for (var i=0;i<l;i++){
  1189.         if (str.charCodeAt(i)<0||str.charCodeAt(i)>255){
  1190. if (n_Type!=0){
  1191. n++;
  1192. if (n_Type==3){
  1193. n++;
  1194. }
  1195. }
  1196. }else{
  1197. if (n_Type!=1){
  1198. n++;
  1199. }
  1200. }
  1201.     }
  1202.     return n;
  1203. }
  1204. function getText(){
  1205. eWebEditor_Temp_HTML.innerHTML = getHTML();
  1206. var s = eWebEditor_Temp_HTML.innerText;
  1207. return s;
  1208. }