主题: kindeditor虽然功能强大,却是了个愚蠢的程序!
作者: lostfarm, 发布日期: 2011-12-05 19:07:30, 浏览数: 5692

首先对于KINDEDITOR设计人员的辛苦劳动表示敬意。

你的编辑器为什么就不能设计成<script type="text/javascript" src="XXXX.js"></script>

 

然后在文档中添加<script type="text/javascript">kindeditor()</script>来实现这个目的呢?弄的这么复杂,搞的我整了半天没整明白,还要上来求助,当然啦,我是菜鸟。

 

本人程序如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="textml; charset=GB2315" />
<title>无标题文档</title>
<style type="text/css">
<!--
*{ margin:0; padding:0;}
body{ background:#FFF; text-align:center; color:#000;}
#container{ margin:0 auto; width:1003px; border:0px solid #000;background:#cccccc}
.header{ margin-bottom:10px; border:1px solid #000; height:80px;}
.left{ width:220px; float:left; height:500px;border:1px solid #000;margin-right:10px; display:inline;}
.right{ float:right;display:inline;}
.right .imag{ width:517px; float:left; height:200px; border:1px solid #000; }
.right .other{ width:242px; float:right; margin-left:10px;}
.right .other .H2{ width:240px; height:95px; border:1px solid #000; margin-bottom:10px;}
.right .content{border:1px solid #000; clear:both; height:385px;}

-->
</style>
</head>
<body>
<script charset="utf-8" src="editor/kindeditor.js"></script>
<script charset="utf-8" src="editor/lang/zh_CN.js"></script>
<script>
        var editor;
        KindEditor.ready(function(K) {
                editor = K.create('#Content',{width:'767px',height:'340px'});
        });
function save()
         {
             var s = KE.util.getData("content_1");
             s = KE.util.escape(s);
             document.getElementById("content_1_1").value = s;
         }

</script>
<div id="container">
    <div class="header">标题头</div>
    <div class="left">左侧导航栏位</div>
    <div class="right">
 <div class="content">
     <div style=""></div>
     <div style="border:1px solid #ccccc"><textarea id="Content" name="Content" cols="100" rows="8" style="width:700px;height:300px;"></textarea></div>
     <input type="submit" value="submit" onclick="javascript:save()"/>

 </div>
    </div>
    <br clear="all" />
</div>
<script type="text/javascript"></script>
</body>
<html>

 

现在面临着问题就是:如何添加提交或者保存按钮;如何取得kindeditor中的内容;有无功能进行ajax提交如何书写;PHP端如何取得数据?

 

郁闷!
 

 

作者: lostfarm, 发布日期: 2011-12-05 19:46:49

<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="textml; charset=GB2315" />
<title>无标题文档</title>
<style type="text/css">
<!--
*{ margin:0; padding:0;}
body{ background:#FFF; text-align:center; color:#000;}
#container{ margin:0 auto; width:1003px; border:0px solid #000;background:#cccccc}
.header{ margin-bottom:10px; border:1px solid #000; height:80px;}
.left{ width:220px; float:left; height:500px;border:1px solid #000;margin-right:10px; display:inline;}
.right{ float:right;display:inline;}
.right .imag{ width:517px; float:left; height:200px; border:1px solid #000; }
.right .other{ width:242px; float:right; margin-left:10px;}
.right .other .H2{ width:240px; height:95px; border:1px solid #000; margin-bottom:10px;}
.right .content{border:1px solid #000; clear:both;}

-->
</style>
</head>
<body>
<script charset="utf-8" src="editor/kindeditor.js"></script>
<script charset="utf-8" src="editor/lang/zh_CN.js"></script>

<div id="container">
    <div class="header">标题头</div>
    <div class="left">左侧导航栏位</div>
    <div class="right">
 <div class="content">
     <div style=""></div>
     <div style="border:1px solid #ccccc"><textarea id="Content" name="Content"></textarea></div>
     <div style="text-align:right;border-top:1px solid #cccccc"><input name="submit" type="image" src="imags/user.gif" ></div>

 </div>
    </div>
    <br clear="all" />
</div>
<script>
        var editor;
        KindEditor.ready(function(K) {
  editor = K.create('#Content',{width:'767px',height:'340px'});
  K('input[name=submit]').click(function(e) {alert(editor.text());});
 });

</script>
</body>
<html>

 

怎么从外面直接读取kindEditor的内容呢?            

回复
作者: 小浪子, 发布日期: 2011-12-05 21:53:08

首先来说呢。你是个死逼东西。

随便看了下你发的。。你连网页的编码都搞错了。还gb2315.你说你是死逼不。

再看你说。你见过哪款编辑器有你说的那样调用的。

 

莫非是用惯了ewebeditor的煞笔。

 

FCK简单不?

回复
作者: kilome, 发布日期: 2011-12-06 08:59:23
回复lostfarm:测试
回复
作者: 麦当苗儿, 发布日期: 2011-12-06 10:07:40

你才是个愚蠢的东西

 

文档上面貌似写的一清二楚   你居然还不知道怎么用?

 

谁会同意你不是一个愚蠢的东西?

回复
作者: 传奇, 发布日期: 2011-12-06 21:53:24

感觉这种调用方法比FCK好多了,之前尝试FCK编辑器focus()事件,就没成功过,而且html代码部分很简单,如何读取内容?等你成功了再去看看FCK是如何做的。

回复
发表新帖 发表回复