0
CKEDITOR를 텍스트 영역에 통합 할 수 없습니다. 당신이 폴더 localhost
,CKEDITOR를 텍스트 영역에 통합
<script type="text/javascript" src="localhost/ckeditor/ckeditor.js"></script>
잘못 라인이없는 것으로보고 있기 때문에
<html>
<head>
<script type="text/javascript" src="localhost/ckeditor/ckeditor.js"></script>
</head>
<body bgcolor=Bisque>
<textarea class="ckeditor" id="body" name="body">
Hii
</textarea>
<script type="text/javascript">
CKEDITOR.replace('body');
</script>
</body>
</html>
콘솔에서 오류를 확인하십시오. 그것은 힌트를 줄 수 있습니다. –
@NiranjanNRaju : 콘솔 오류를 점검했습니다. 괜찮아. –
'localhost' 폴더가 정말로 있습니까? – Wizard