主题: &后的字符无法自动填充进KE |
作者: hugh, 发布日期: 2013-09-03 12:16:25, 浏览数: 2060 |
现有一textarea,里面的内容是:123&456 在上面的元素中创建一个KE,结果KE的内容里只有:123 &后面的内容没到里面去,这是为什么 使用的如下代码创建的KE:
KindEditor.create('#' + textarea_id, { themeType:'qq', items:[ 'bold', 'italic', 'underline', 'fontsize', 'forecolor', 'hilitecolor', 'plug-align', 'plug-order', 'plug-indent', 'source' ], minHeight:40, afterCreate:function () { }, afterChange:function () { } }); |