主题: 页面中js的function内如何能获得textarea中的信息
作者: zsyh27, 发布日期: 2011-09-09 14:07:10, 浏览数: 3693

我在javascrupt中用       

KindEditor.ready(function(K) {
                chatmessagecontent = K.create('#editor_chatmessagecontent',{
                  themeType : 'example1',
                 items:['save'],
                 resizeType:'0'
                  });

初始化了editor_chatmessagecontent,获得了chatmessagecontent。

 

请问我在jsp页面中另外再写一个javascript的function,在这个function中如何获得这个editor_chatmessagecontent中的信息,我在demo中找到的方法是K.create(),这只是一个初始化的方法,我在最上面已经用到了啊,十分的不解,希望高手帮帮忙,给我解惑。

作者: Roddy, 发布日期: 2011-09-09 16:13:50
chatmessagecontent.html();
回复
作者: zsyh27, 发布日期: 2011-09-14 15:39:03

回复Roddy:大哥,我当然是用.html()方法,但是我想知道的是我在js新的function中如何得到这个chatmessagecontet对象,才是我想知道的。

回复
作者: tatj45, 发布日期: 2012-03-02 15:36:47

var g;

KindEditor.ready(function(K) {

                chatmessagecontent = K.create('#editor_chatmessagecontent',{
                  themeType : 'example1',
                 items:['save'],
                 resizeType:'0'

                  });

g=chatmessagecontent ;

g.html();

回复
发表新帖 发表回复