0
点赞
收藏
分享

微信扫一扫

在线HTML编辑器 KindEditor 多个编…

金牛豆豆 2022-07-27 阅读 86


在线HTML编辑器 KindEditor

同一个网页同时插入多个编辑器

<head>部分
<script charset="utf-8" src="../kindeditor/kindeditor-min.js"></script>
<script charset="utf-8" src="../kindeditor/lang/zh_CN.js"></script>
<script>
KindEditor.ready(function(K) {
K.create('#content', {
urlType : 'relative'
});
K.create('#content2', {
urlType : 'absolute'
});
K.create('#content3', {
urlType : 'domain'
});
});
</script><body>部份
<textarea name="content"
<textarea name="content2"

举报

相关推荐

0 条评论