[jQuery Plugin] FCKeditor 2.6.5 사용법

by 조쉬 posted Sep 11, 2016
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
무료에디터고, 사용법도 매우 편리하다 *(구버전)

FCKeditor 2.6.5 기준이며, 실제 업체쪽에 테스트 해본후 올리는 글임을 참조바람...

신버전 같은경우.. 변경해줘야할 부분이 상당히 있으니..

그건 따로문의 주시길~~ 



상단에 

<script type="text/javascript" src="/fckeditor/fckeditor.js"></script> //경로에맞게 변경..

하부 실제 보이는 게시판에 아래와 같이 적용

<script type="text/javascript"> 
window.onload = function() { 
var oFCKeditor = new FCKeditor("content"); //필드명
oFCKeditor.BasePath = "/fckeditor/"; // 경로
oFCKeditor.Height = "400" //게시판 height값
oFCKeditor.ReplaceTextarea(); 
} 
< /script>
< textarea name="content" rows="15">

Articles

1 2 3 4 5 6 7 8 9