头jsp文件
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
<%
String contextPath = request.getContextPath();
%>
<title></title>
<script language="javascript" type="text/javascript" src="../../../../plugins/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
language: "zh",
mode : "textareas",
skin : "o2k7",
// skin_variant : "silver",
//定义显示类别
theme : "advanced",
//定义载入插件
// plugins : "pagebreak,table,advimage,bramus_cssextras,advlink,media,contextmenu,paste,fullscreen,noneditable,template,inlinepopups",
plugins : "spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager,syntaxhl,",
//定义工具栏的位置
theme_advanced_toolbar_location : "top",
//定义工具栏工具的对其方式
theme_advanced_toolbar_align : "left",
//定义输入框下方是否显示状态栏,默认不显示
theme_advanced_statusbar_location : "bottom",
//定义是否可以改变输入窗口大小
theme_advanced_resizing : true,
theme_advanced_source_editor_height : "450",
remove_linebreaks : false,
extended_valid_elements : "textarea[cols|rows|disabled|name|readonly|class]" ,
content_css : "css/example.css",
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect,",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,syntaxhl,",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
// theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
// theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect,syntaxhl-editor",
// theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
// theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
// theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
});
</script>
</script>
使用tinyMCE的页面
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@page import="se.sziit.domain.core.Ge_test"%>
<%@ taglib uri="/struts-tags" prefix="s"%>
<%
String contextPath = request.getContextPath();
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<jsp:include page="/tinymce_config.jsp"></jsp:include>
<jsp:include page="/common_head.jsp" />
<script type="text/javascript">
function save(){
var form = document.forms[0];
form.action='<%=contextPath%>/core/homePage/contentManage/ge_test/save.action';
form.submit();
}
</script>
<title></title>
</head>
<body>
<div id="man_zone">
<div align="right">
<input icon="icon-retry" type="button" value="返回" css="btn"
onclick="javascript:history.go(-1)" />
</div>
<form name="AddForm" method="post" id="formID"
action="javascript:save()">
<s:token></s:token>
<table width="99%" border="0" align="center" cellpadding="3"
cellspacing="1" class="table_style">
<tr>
<td width="18%" class="left_title_1">
<span class="left-title">NAME:</span>
</td>
<td width="82%">
<textarea id="ge_test.name" class="validate[required]"
type="text" name="ge_test.name" >${ge_test.name}</textarea>
</td>
</tr>
</table>
<center>
<input icon="icon-save" type="button" css="btn" value="保存" />
</center>
</form>
</div>
</body>
</html>
TinyMCE插件是放在webRoot下
我想,目录应该是
<script language="javascript" type="text/javascript" src="/plugins/tiny_mce/tiny_mce.js"></script>就可以了啊
可就是要
<script language="javascript" type="text/javascript" src="../../../../plugins/tiny_mce/tiny_mce.js"></script>才能行
又求解决....
分享到:
相关推荐
4. **错误处理**:如果上传失败,插件应提供适当的错误提示,以便用户了解问题并采取相应措施。 5. **配置选项**:为了适应不同的应用场景,自定义插件可能提供一些配置选项,如服务器URL、允许的文件类型、最大...
vue-tinymce 封装了el-upload 控件,支持富文本编辑器自定义图片上传整合。 复制到vue的src/components文件夹下 详情博文介绍见:https://xingyun.blog.csdn.net/article/details/102492921
我的第一个C#小程序之简单音乐播放器1731655933.html
练习springboot1 项目 模拟高并发秒杀,实现基本的登录、查看商品列表、秒杀、下单等功能,简单实现了系统缓存、降级和限流。SpringBoot + MyBatis + MySQL+Druid + Redis + RabbitMQ + Bootstrap + jQue….zip
html常规学习.zip资源资料用户手册
【项目资源】:包含前端、后端、移动开发、操作系统、人工智能、物联网、信息化管理、数据库、硬件开发、大数据、课程资源、音视频、网站开发等各种技术项目的源码。包括STM32、ESP8266、PHP、QT、Linux、iOS、C++、Java、python、web、C#、EDA、proteus、RTOS等项目的源码。【项目质量】:所有源码都经过严格测试,可以直接运行。功能在确认正常工作后才上传。【适用人群】:适用于希望学习不同技术领域的小白或进阶学习者。可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。【附加价值】:项目具有较高的学习借鉴价值,也可直接拿来修改复刻。对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。【沟通交流】:有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。鼓励下载和使用,并欢迎大家互相学习,共同进步。
HTML转PDF py脚本
yolo系列算法目标检测数据集,包含标签,可以直接训练模型和验证测试,数据集已经划分好,包含数据集配置文件data.yaml,适用yolov5,yolov8,yolov9,yolov7,yolov10,yolo11算法; 包含两种标签格:yolo格式(txt文件)和voc格式(xml文件),分别保存在两个文件夹中; yolo格式:<class> <x_center> <y_center> <width> <height>, 其中: <class> 是目标的类别索引(从0开始)。 <x_center> 和 <y_center> 是目标框中心点的x和y坐标,这些坐标是相对于图像宽度和高度的比例值,范围在0到1之间。 <width> 和 <height> 是目标框的宽度和高度,也是相对于图像宽度和高度的比例值
西电通院模电大作业课后题电路设计图24年
本文档主要讲述的是sqlserver内存释放;希望本文档会给有需要的朋友带来帮助;感兴趣的朋友可以过来看看
zw
发动机制造厂技术处安全、消防安全手册.docx
生产现场工艺文件执行检查管理流程说明.docx
Spring Boot集成Spring Security,HTTP请求授权配置:包含匿名访问、允许访问、禁止访问配置
通过设置截止频率和带宽来获取对应的滤波器参数
全国月尺度平均风速数据集(1961-2022, 0.25° × 0.25°)是一个高分辨率的网格化平均风速数据集,覆盖了中国大陆及周边地区。 该数据集通过科学方法整合气象观测和再分析数据,为气候研究、生态模型、农业生产、以及水资源管理等领域提供了重要支持。 数据下载后可显示详细信息。
styles
用VHDL语言设计电梯控制器.doc
管道试压报审验表、管道强度、严密性试验记录表.doc
使用springboot实现的旅游网站