kindEditor中插入code(各种程序)显示回来就变了是什么情况
kindEditor中插入code(各种程序)显示回来就变了是什么情况
在编辑器里显示是对的,如下图,但再回来就不是了,不知道是什么情况,等待大虾帮助!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
kindEditor中插入code(各种程序)显示回来就变了是什么情况
在编辑器里显示是对的,如下图,但再回来就不是了,不知道是什么情况,等待大虾帮助!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
<link rel="stylesheet" href="<%=request.getContextPath() %>/kindeditor-4.1.10/themes/default/default.css" />
<link rel="stylesheet" href="<%=request.getContextPath() %>/kindeditor-4.1.10/plugins/code/prettify.css" />
<link rel="stylesheet" href="<%=request.getContextPath() %>/resources/styles/unit.css"/>
<script charset="utf-8" src="<%=request.getContextPath() %>/kindeditor-4.1.10/kindeditor.js"></script>
<script charset="utf-8" src="<%=request.getContextPath() %>/kindeditor-4.1.10/lang/zh_CN.js"></script>
<script charset="utf-8" src="<%=request.getContextPath() %>/kindeditor-4.1.10/plugins/code/prettify.js"></script>
<script>
KindEditor.ready(function(K) {
var editor1 = K.create('textarea[name="content"]', {
cssPath : '<%=request.getContextPath() %>/kindeditor-4.1.10/plugins/code/prettify.css',
uploadJson : '<%=request.getContextPath() %>/kindeditor-4.1.10/jsp/upload_json.jsp',
fileManagerJson : '<%=request.getContextPath() %>/kindeditor-4.1.10/jsp/file_manager_json.jsp',
allowFileManager : true,
themeType : 'prettify',
resizeType : 0,
allowPreviewEmoticons : false,
allowUpload:true,
filterMode:false
});
if (editor1) {
//alert("ni");
editor1.resize('99.8%', '500px');
//alert("nif");
};
prettyPrint();
这样用对吗?
你看看 我的用法对吗? 下面是代码
没有加载插件和css
查查官网