首页 > 学院 > 开发设计 > 正文

TinyMCE(一)

2019-11-15 01:07:53
字体:
来源:转载
供稿:网友
TinyMCE(一)Simple theme example

 1 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 <% 3 String path = request.getContextPath(); 4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 %> 6  7 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 8 <html> 9 <head>10     <script type="text/Javascript" src="<%=path %>/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>11     <script type="text/javascript">12         tinyMCE.init({13             mode : "textareas",14             theme : "simple"15         });16     </script>17 </head>18 <body>19 20 <form method="post" action="${pageContext.request.contextPath }/DemoServlet">21     <h3>Simple theme example</h3>22 23     <!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->24     <textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 80%">25             This is some example text that you can edit inside the &lt;strong&gt;TinyMCE editor&lt;/strong&gt;.26     </textarea>27 28     <br />29     <input type="submit" name="save" value="Submit" />30     <input type="reset" name="reset" value="Reset" />31 </form>32 </body>33 </html>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表