kindeditor( 二 )


});
});
functionsave(){
//取得HTML内容?
//同步数据后可以直接取得textarea的value?
editor.sync();
html=document.getElementById('addeditor_id').value;//原生API
$("#schtmlnr").val(html);//把KindEditor产生的html代码放到schtmlnr里面 , 用于提交
}
</head>
<body>
<form>
<textareaid="addeditor_id"name="content"style="width:100%;height:200px;border:0none;visibility:hidden;"></textarea>
<textarearows=""cols=""name="schtmlnr"id="schtmlnr"style="display:none;"></textarea>
<inputtype="button"value=https://minzuwang.com/read/"提交"onclick="save()"/>
<form>
</body>
</html>
关于kindeditor编辑器中一键排版问题!请求高手:

kindeditor

文章插图
你去搜索quickformat.js , 在里面找K.each(nodeList, function(i, subList) {
将下一行的改为var wrapper = K('<p style="font-size:14px;"></p>', doc);
这样你的一键排版就会是14PX字号了追问这个我看到了
请问这个是什么原因 还请帮忙!!
如何向KindEditor里插入HTML内容:
kindeditor

文章插图
给你个完整的例子
<html>
<head>
<link rel="stylesheet" href=https://minzuwang.com/read/"kindeditor/themes/default/default.css" />
<script charset="utf-8" src=https://minzuwang.com/read/"kindeditor/kindeditor-min.js">
<script charset="utf-8" src=https://minzuwang.com/read/"kindeditor/lang/zh_CN.js">
<jsp:include page="top.jsp" flush="true"/>
<script language="JavaScript" type="text/javascript">
var editor;
KindEditor.ready(function(K) {
editor = K.create('textarea[name="content"]', {
resizeType : 1,
allowPreviewEmoticons : false,
items : [
'undo','redo','|','formatblock','fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline','strikethrough','removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist','insertunorderedlist','insertorderedlist','insertunorderedlist', '|', 'emoticons', 'image', 'link','table','hr','preview'],
});
});

function save(){
//取得HTML内容?
//同步数据后可以直接取得textarea的value?
editor.sync();
html=document.getElementById('addeditor_id').value;//原生API
$("#schtmlnr").val(html);//把KindEditor产生的html代码放到schtmlnr里面 , 用于提交
}
</head>
<body>
<form>
<textarea id="addeditor_id" name="content" style="width:100%;height:200px;border: 0 none;visibility:hidden;"></textarea>
<textarea rows="" cols="" name="schtmlnr" id="schtmlnr" style="display:none;"></textarea>
<input type="button" value=https://minzuwang.com/read/"提交" onclick="save()"/>
<form>
</body>
</html>

推荐阅读