본문 바로가기
프로그래밍/웹개발(WEB)

cheditor 이미지 등록 시 alt값 수정방법

by imfireguy 2023. 3. 11.
반응형

cheditor에 이미지 등록 시 alt 값에도 파일명과 확장자가 같이 들어가는 일이 있었고, 이걸 수정해야되는 일이 있어서 작성해 봅니다.

 

cheditor.js 에 imgSetAttrAlt 값 확인

하단에 이미지에서 확인 시 imgSetAttrAlt 값이 true로 되어 있습니다.

true 로 설정중인경우에만 alt값을 남기는 건데요

 

스크립트를 찾아보면 하단처럼 되어있는걸 보실 수 있습니다.

 

if (this.config.imgSetAttrAlt) {
    img.setAttribute('alt', imgAttr.alt || imgAttr.origName);
} else {
    img.removeAttribute('alt');
}

 

전여기서 이제 확장자는 빼고 파일명만 남기고 싶어서 수정했습니다.

아래 코드 및 이미지처럼 수정했습니다.

if (this.config.imgSetAttrAlt) {
    img.setAttribute('alt', imgAttr.alt || imgAttr.origName.split(".")[0]);
} else {
    img.removeAttribute('alt');
}

 

 

수정 후에 보니 이제 alt 값이 alt="test.jpg" 로 등록되던게, alt="test"로 잘 들어 가는거 확인 했습니다.

반응형

댓글