主题: ASP.NET 如何将 KindEditor 切换为只读?
作者: 摆摆, 发布日期: 2011-01-19 00:24:08, 浏览数: 6279

我现在需要在后台做出一个判断,然后确定是否需要将Editor切换为只读

 

Page.ClientScript.RegisterStartupScript(typeof(String), "txtEditor", "KE.toolbar.disable('txtEditor', []);", true);
KE.toolbar.disable('txtEditor', []);  这个txtEditor 就是编辑器的 textarea 的ID。

 

Page.ClientScript.RegisterStartupScript(typeof(String), "txtEditor", "KE.readonly('txtEditor', true);", true);
KE.readonly('txtEditor', true);  同上

 

两个都没有效果,第二种在IE8下报脚本错误:
消息: 'iframeDoc.body' 为空或不是对象
行: 2571
字符: 21
代码: 0
URI: http://localhost/editor/kindeditor.js

 

在加载的时候用 afterCreate 来实现只读(演示里的方法) 没有问题

 

请问该如何实现?

发表新帖 发表回复