KindEdit 부 텍스트 편집기 소결
4076 단어 대 전단-javascript
<textarea id="content1" name="content" style="height:440px">textarea>
<textarea id="content2" name="content" style="height:440px">textarea>
......//
그리고 공식 문서 에 따라 초기 화 합 니 다.
var editor = new Array();
KindEditor.ready(function(K) {
editor[0] = K.create("#content1",{
allowFileManager : true,
afterCreate : function() { this.sync();},
afterBlur: function () { this.sync(); }
});
editor[1] = K.create("#content2", {
allowFileManager : true,
afterCreate : function() { this.sync();},
afterBlur: function () { this.sync(); }
});
// kindeditor...
//afterCreate : function() { this.sync();},
//afterBlur: function () { this.sync(); }
// form
html1 = editor[0].html();
html2 = editor[1].html();
html1 = $('.content1').val();
html2 = $('.content2').val();
// , , , textarea value ,
});
데이터 리 턴,우 리 는 수정 글 을 편집 할 때 기 존의 글 내용 을 통 해 수정 해 야 한 다 는 것 을 알 게 될 것 입 니 다.이 단 계 는 배경 에서 보 내 온 데 이 터 를 가 져 와 서 리 턴 해 야 합 니 다.
editor[0].html(dat.data);
editor[1].html(dat.data);
......
// !!!
얼씨구,자기가 덜렁 거 리 는 건 나중에 잊 지 않 기 위해 서 라 고 써 있어!!!!