index.jsp
上传用户:nbluoke
上传日期:2013-08-09
资源大小:4851k
文件大小:3k
源码类别:

教育系统应用

开发平台:

WORD

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  4. <title>文件在线编辑器</title>
  5. <script language="JavaScript" type="text/JavaScript">
  6. function MM_popupMsg(msg) { //v1.0
  7.   alert(msg);
  8. }
  9. function check()
  10. {
  11. var strFileName=form1.FileName.value;
  12. var FileType;
  13. var ImgWH;
  14. if (strFileName=="")
  15. {
  16.      alert("请选择要上传的文件");
  17.      return false;
  18. }
  19.         return true;
  20. }
  21. function loadForm()
  22. {
  23.   editor.HtmlEdit.document.body.innerHTML=document.myform.Content.value;
  24.   return true
  25. }
  26. function subchk()
  27. {
  28. document.form1.content.value= window.editor.getHTML();
  29. }
  30. function insertHtml(HtmlCode)
  31. {
  32. var win=window.editor.Composition.document;//其中编辑区域是gledit.jsp中的一个iframe,id是idEditbox
  33. window.editor.Composition.focus();//是编辑器获得焦点,防止代码插入在编辑器外地方
  34. win.selection.createRange().pasteHTML(HtmlCode)//在光标的位置插入html代码
  35. }
  36. function tempfun(msg)
  37. {
  38.   insertHtml("<img src='/test/editor/pic/20030915170559718.gif' border=0>");
  39. }
  40. </SCRIPT>
  41. </head>
  42. <body>
  43. <p><a href="http://www.cnmaya.org" target="_blank"><img src="images/mayalogo.gif" width="88" height="31" border="0"></a></p>
  44. <p>&nbsp;</p>
  45. <form name="form1" method="post" action=""  onsubmit=" subchk()">
  46. <table width="760" border="0" align="center" cellpadding="2" cellspacing="2">
  47.   <tr>
  48.     <td>主题:</td>
  49.     <td><input name="title" type="text" id="title" size="68">
  50.     </td>
  51.   </tr>
  52.   <tr>
  53.     <td>内容:</td>
  54.     <td colspan="2">
  55.       <!--object id=doc_html style="LEFT: 0px; TOP: 0px" data=edit.jsp width=544 height=320 type=text/x-scriptlet  viewastext>
  56.       </object-->
  57.       <IFRAME SRC="edit.jsp" id='editor' frameborder=0 scrolling=0 width=544 height=321>
  58.       </IFRAME>
  59. <textarea name="Content" style="display:none"></textarea>
  60.     </td>
  61.   </tr>
  62.   <tr>
  63.     <td colspan="2">
  64.       <div align="center">
  65.         <input name="Submit" type="submit" value="提交">
  66. &nbsp;
  67.         <input type="reset" name="Submit2" value="重置">
  68.         <input name="temp" type="button" id="temp"  onClick="tempfun('asdd')" value="temp" >
  69.         <input name="btn" type="button" id="btn" onClick="MM_popupMsg('tef')" value="按钮">
  70.         </div>
  71.     </td>
  72.   </tr>
  73. </table>
  74. <p>&nbsp;</p>
  75. <p>&nbsp;</p>
  76. <p>&nbsp;</p>
  77. </form>
  78. <div align="center">
  79.   <table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
  80.     <tr>
  81.       <td><div align="center"><font size="-1">Copyright (C) 2003 <a href="http://www.itmaya.com/bbs" target="_blank">www.cnmaya.org</a> </font></div></td>
  82.     </tr>
  83.   </table>
  84. </div>
  85. </body>
  86. </html>