카

웹접근성심사 홈페이지를 위한 대체텍스트 alt 입력 기능

· 2025-10-14 (화) 14:57:22 · 2688 · 3

웹접근성 마크가 있는 홈페이지는 이미지에 대체텍스트(alt)를 입력해야 합니다.

장애인분들을 위해 필요한 내용이죠...

 

smartteditor2 게시판에 첨부한 분을 위해 간단한 소스 공유합니다.

 

예시 이미지입니다.

 

3731943363_1760421301.3798.png

 

/plugin/editor/smarteditor2/SmartEitor2Skin.html

아래 내용 추가하시면 됩니다.

[code]

<!-- SE2 Markup End -->
<script>
(function() {
    function attachImageAltEditor() {
        const iframe = document.getElementById("se2_iframe");
        if (!iframe) {
              return setTimeout(attachImageAltEditor, 500);
        }

        const editorDoc = iframe.contentDocument || iframe.contentWindow.document;
        if (!editorDoc || !editorDoc.body) {
            return setTimeout(attachImageAltEditor, 500);
        }

        // 중복 방지
        if (editorDoc.__altEventAttached) return;
        editorDoc.__altEventAttached = true;

        console.log("SmartEditor2 이미지 ALT 편집기 연결 완료");

        editorDoc.addEventListener("click", function(e) {
            const target = e.target;
            if (target.tagName === "IMG") {
                const currentAlt = target.getAttribute("alt") || "";
                const newAlt = prompt("이미지 대체텍스트(alt)를 입력하세요.", currentAlt);
                if (newAlt !== null) {
                    target.setAttribute("alt", newAlt.trim());
                }
            }
        });
    }

      setTimeout(attachImageAltEditor, 500);
})();
</script>
[/code]

|

댓글 3개

감사 합니다.

2025-10-14 (화) 15:49:17
편하게 사용할 것 같습니다. 감사합니다. ^^

감사합니다.

댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

2,788건
+
제목 글쓴이 날짜 조회
25-12-06 조회 3,781
25-12-02 조회 3,757
25-11-30 조회 3,673
25-11-30 조회 3,376
25-11-27 조회 3,704
25-11-23 조회 3,212
25-11-23 조회 3,115
25-11-19 조회 3,122
25-11-15 조회 3,706
25-11-09 조회 3,129
25-11-06 조회 3,015
25-11-06 조회 3,452
25-11-05 조회 3,084
25-11-03 조회 2,851
25-11-01 조회 3,009
25-10-28 조회 2,904
25-10-28 조회 3,183
25-10-28 조회 2,869
25-10-27 조회 2,953
25-10-22 조회 2,959
25-10-22 조회 3,207
25-10-21 조회 2,684
25-10-17 조회 2,748
25-10-17 조회 2,679
25-10-17 조회 2,588
25-10-17 조회 2,707
25-10-15 조회 2,653
25-10-14 조회 2,689
25-10-14 조회 2,649
25-10-14 조회 3,392