kindeditor怎么获取获取HTML数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kindeditor怎么获取获取HTML数据相关的知识,希望对你有一定的参考价值。

asp网站,现在后台正常显示kindeditor编辑器,但是添加的内容在前台看不到,编辑产品时也看不到内容。看了帮助文档,里面有几步我不知道如何完成了,求指点。我不懂代码,希望能详细指点。帮助文档里的这两步我不会操作了。2的下面那个代码,以及4的代码我不知道该放在哪里。

给你个完整的例子
<html>
<head>
<link rel="stylesheet" href="kindeditor/themes/default/default.css" />
<script charset="utf-8" src="kindeditor/kindeditor-min.js"></script>
<script charset="utf-8" src="kindeditor/lang/zh_CN.js"></script>
<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="提交" onclick="save()"/>
<form>
</body>
</html>

追问

非常感谢你的回答,但是问题没有解决,如果您能抽空帮我远程看一下更好。

追答

还有什么问题?
你可以把你主要部分的代码贴出来我看看

追问

非常感谢你的回答,已在淘宝找人解决。谢谢你。

参考技术A 静静然507的代码中缺少一行:/script,就是在/head的前面。你加上就可以看到加载后的效果图了 。这里尖括号显示不出来,我只能这样回答了。

以上是关于kindeditor怎么获取获取HTML数据的主要内容,如果未能解决你的问题,请参考以下文章

Kindeditor 编辑代码过滤

jQuery 获取不到 kindeditor 内容 的解决方法

如何获取 kindeditor文本框中的值

如何获取 kindeditor文本框中的值

kindEditor 无法获取 word文档中的图片,如何才能获取

kindEditor 无法获取 word文档中的图片,如何才能获取?用asp代码网站上使用~