show.js

来自「八星瓢虫留言本特点:采用PHP+Access数据库实现」· JavaScript 代码 · 共 76 行

JS
76
字号
/*
*######################################
* eWebEditor v3.80 - Advanced online web based WYSIWYG HTML editor.
* Copyright (c) 2003-2006 eWebSoft.com
*
* For further information go to http://www.ewebsoft.com/
* This copyright notice MUST stay intact for use.
*######################################
*/


document.write ("<table border=0 cellpadding=0 cellspacing=0 width='100%' height='100%'>");
document.write ("<tr><td>");

showToolbar();

document.write ("</td></tr>");
document.write ("<tr><td height='100%'>");

document.write ("    <table border=0 cellpadding=0 cellspacing=0 width='100%' height='100%'>");
document.write ("    <tr><td height='100%'>");
document.write ("    <input type='hidden' ID='ContentEdit' value=''>");
document.write ("    <input type='hidden' ID='ModeEdit' value=''>");
document.write ("    <input type='hidden' ID='ContentLoad' value=''>");
document.write ("    <input type='hidden' ID='ContentFlag' value='0'>");
document.write ("    <iframe class='Composition' ID='eWebEditor' MARGINHEIGHT='1' MARGINWIDTH='1' width='100%' height='100%' scrolling='yes'> ");
document.write ("    </iframe>");
document.write ("    </td></tr>");
document.write ("    </table>");

document.write ("</td></tr>");

if (config.StateFlag=="1"){
    document.write ("<tr><td height=25>");
    document.write ("    <TABLE border='0' cellPadding='0' cellSpacing='0' width='100%' class=StatusBar height=25>");
    document.write ("    <TR valign=middle>");
    document.write ("    <td>");
    document.write ("        <table border=0 cellpadding=0 cellspacing=0 height=20>");
    document.write ("        <tr>");
    document.write ("        <td width=10></td>");
    document.write ("        <td class=StatusBarBtnOff id=eWebEditor_CODE onclick=\"setMode('CODE')\" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modecode.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeCode"] + "</td>");
    document.write ("        <td width=5></td>");
    document.write ("        <td class=StatusBarBtnOff id=eWebEditor_EDIT onclick=\"setMode('EDIT')\" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modeedit.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeEdit"] + "</td>");
    document.write ("        <td width=5></td>");
    document.write ("        <td class=StatusBarBtnOff id=eWebEditor_TEXT onclick=\"setMode('TEXT')\" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modetext.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeText"] + "</td>");
    document.write ("        <td width=5></td>");
    document.write ("        <td class=StatusBarBtnOff id=eWebEditor_VIEW onclick=\"setMode('VIEW')\" unselectable=on><img border=0 src='buttonimage/" + config.ButtonDir + "/modeview.gif' width=20 height=15 align=absmiddle>" + lang["StatusModeView"] + "</td>");
    document.write ("        </tr>");
    document.write ("        </table>");
    document.write ("    </td>");
    document.write ("    <td align=right>");
    document.write ("        <table border=0 cellpadding=0 cellspacing=0 height=20>");
    document.write ("        <tr>");
    document.write ("        <td style='cursor:pointer;' onclick='sizeChange(300)'><img border=0 SRC='buttonimage/" + config.ButtonDir + "/sizeplus.gif' width=20 height=20 alt='" + lang["SizePlus"] + "'></td>");
    document.write ("        <td width=5></td>");
    document.write ("        <td style='cursor:pointer;' onclick='sizeChange(-300)'><img border=0 SRC='buttonimage/" + config.ButtonDir + "/sizeminus.gif' width=20 height=20 alt='" + lang["SizeMinus"] + "'></td>");
    document.write ("        <td width=40></td>");
    document.write ("        </tr>");
    document.write ("        </table>");
    document.write ("    </td>");
    document.write ("    </TR>");
    document.write ("    </Table>");
    document.write ("</td></tr>");
}
document.write ("</table>");

document.write ("<div id='eWebEditor_Temp_HTML' style='VISIBILITY: hidden; OVERFLOW: hidden; POSITION: absolute; WIDTH: 1px; HEIGHT: 1px'></div>");

document.write ("<form id='eWebEditor_UploadForm' action='" + config.ServerExt + "/upload." + config.ServerExt + "?action=remote&type=remote&style=" + config.StyleName + "&language=" + AvailableLangs["Active"] + "' method='post' target='eWebEditor_UploadTarget'>");
document.write ("<input type='hidden' name='eWebEditor_UploadText'>");
document.write ("</form>");
document.write ("<iframe name='eWebEditor_UploadTarget' width=0 height=0></iframe>");
document.write ("<div id=divProcessing style='width:200px;height:30px;position:absolute;display:none'>");
document.write ("<table border=0 cellpadding=0 cellspacing=1 bgcolor='#000000' width='100%' height='100%'><tr><td bgcolor=#3A6EA5><marquee align='middle' behavior='alternate' scrollamount='5' style='font-size:9pt'><font color=#FFFFFF>" + lang["MsgRemoteUploading"] + "</font></marquee></td></tr></table>");
document.write ("</div>");

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?