KindEditor 编辑器的使用 |
<script> |
var editor; |
|
KindEditor.ready( function (K) { |
|
editor = K.create( 'textarea[name="otherinfo_content_{$other.key}"]' , { |
allowFileManager : true, |
afterBlur: function (){ |
this.sync(); |
} |
}); |
|
}); |
</script> |