editsource.htm

来自「top-cms内容管理系统」· HTM 代码 · 共 60 行

HTM
60
字号
<!--
'###########################################################################################
'*  程序名称: Top-CMS
'*---------------------------------------------------------------------------------------
'*  系统版本: 1.0 0215
'*  版权所有: www.Net-Develop.com
'*  程序设计: 江南行客
'*  联系方式:
'*            OICQ:2503086
'*            EMAIL:net-oa@sohu.com
'*  网站地址: 
'*            http://www.net-develop.com  
'*            http://www.top-cms.com   
'*---------------------------------------------------------------------------------------
'*  Copyright 2004 www.net-develop.com - All Rights Reserved.
'###########################################################################################
-->
<html>
<head>
<title>编辑HTML代码</title>
<link rel="stylesheet" href="css/css.css" type="text/css">
</head>

<SCRIPT>
window.onload=fnInit;
function fnInit(){
	ae_source_form.source.value = window.dialogArguments.DHTMLSafe.DOM.body.innerHTML;
}
function sendhome(obj) {
	if (ae_source_form.source.value.length) {
		window.dialogArguments.DHTMLSafe.DOM.body.innerHTML=ae_source_form.source.value;
	}
	else {
		window.dialogArguments.DHTMLSafe.DOM.body.innerHTML=" ";
	}
	window.close();
}
function cancel() {
	window.close();
}

</SCRIPT>

<body topmargin="0" leftmargin="0" bgcolor="menu" style="border:0;overflow:	hidden;">
<form name="ae_source_form">
  <table width="96%" border="0" cellspacing="0" cellpadding="2">
    <tr>
      <td align="center"> HTML代码编辑窗口<br>
        <textarea cols="58" rows="27" name="source"> </textarea>
         </td>
    </tr>
  </table>
  <center>
    <input type="button" name="B1" value=" 保存 " style="width:64px;" onclick="sendhome();">
	<input type="button" name="B2" value=" 取消 " style="width:64px;" onclick="cancel();">
  </center>
</form>
</body>
</html>
              

⌨️ 快捷键说明

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