KindEditor 4.1.7工具栏二次开发的问题。

Netcean 2014-01-05 09:14:54
a.html中有个ID为txttitle的输入框,另外有调用了KindEditor编辑器。
大概代码如下:

<tr>
<th>标题:</th>
<td><input type="text" id="txttitle"/></td>
</tr>
<tr>
<th>内容:</th>
<td><textarea id="txtContent" cols="100" rows="8" style="width:100%;height:400px;visibility:hidden;" runat="server"></textarea></td>
</tr>


现在已经在KindEditor工具栏的JS文件中添加了个图标,点击该图标时能正常弹出一个层,想问,如何在弹出的这个层中成功的对a.html中的txttitle的值进行读写?

我用window.parent或self.window.opener等方式都行不通。。。。
...全文
188 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
摘取天上星 2014-01-18
  • 打赏
  • 举报
回复
<script language="javascript"> var editor; KindEditor.ready(function(K) { editor = K.create('textarea[name="content"]', { resizeType : 1, pasteType : 1, allowPreviewEmoticons : false, allowImageUpload : true, allowMediaUpload : false, items : [ 'source', 'preview', '|', 'undo','redo', '|', 'fontname', 'fontsize', '|', 'forecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'emoticons', 'image', 'media', '|', 'link', 'unlink', 'table'] }); }); </script> <textarea id="txtContent" name="content" cols="100" rows="8" style="width:100%;height:400px;visibility:hidden;" runat="server"></textarea>
摘取天上星 2014-01-18
  • 打赏
  • 举报
回复

<script language="javascript">
    var editor;
    KindEditor.ready(function(K) {
      editor = K.create('textarea[name="content"]', {
        resizeType : 1,
        pasteType : 1,
        allowPreviewEmoticons : false,
        allowImageUpload : true,
        allowMediaUpload : false,
        items : [
          'source', 'preview', '|', 'undo','redo', '|', 'fontname', 'fontsize', '|', 'forecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'emoticons', 'image', 'media', '|', 'link', 'unlink', 'table']
      });
    });
</script>
<textarea id="txtContent" name="content" cols="100" rows="8" style="width:100%;height:400px;visibility:hidden;" runat="server"></textarea>
Netcean 2014-01-18
  • 打赏
  • 举报
回复
各位进来接分吧。。

87,910

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧