웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
제이쿼리로 에디터에 내용 넣기
2013.07.02 18:59
jQuery('#editor_iframe_11111').
// 에디터 아이프레임을 찾습니다.
// 에디터를 생성할 때 editor_sequence를 11111로 설정해줘야 합니다.
// 아니면 에디터가 한개 일 때 jQuery('iframe[id^="editor_iframe"]') 제이쿼리 정규식 사용.
contents(). // 아이프레임 안 내용
find('.xe_content'). // 내용이 들어가는 부분 찾기
html(넣을 내용); // html 함수로 내용을 넣어줘야 내용이 잘 나옵니다.
jQuery('#editor_iframe_11111').contents().find('.xe_content').html(넣을 내용);
유용한 기능 감사드립니다.