CKEditor 이미지 클래스 고정하기
2020. 7. 1. 20:16ㆍ개발자료/Web
반응형
CKEditor 을 사용하는 페이지에 아래 자바스크립트 코드 추가
CKEDITOR.on('instanceReady', function (ev) {
ev.editor.dataProcessor.htmlFilter.addRules({
elements:{
$: function (element) {
// check for the tag name
if (element.name == 'img') {
element.attributes.class = "img-fluid" // Put your class name here
}
// return element with class attribute
return element;
}
}
});
});
참고
반응형
'개발자료 > Web' 카테고리의 다른 글
[PHP] Base64 Image 파일로 변경하기 (0) | 2020.07.14 |
---|---|
[PHP] 랜덤 암호화 키, 랜덤 IV 생성 (0) | 2020.07.10 |
[PHP] PhpSpreadsheet - Excel(엑셀) 제어 라이브러리 (0) | 2020.02.25 |
[PHP] Excel 라이브러리 - PhpSpreadsheet (0) | 2020.02.21 |
라디오버튼(RadioButton) (0) | 2020.02.20 |