ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • HTML 태그 제거하기
    Database/기타 2019. 5. 27. 17:55
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
        <div id="test">
            <div>Remove all tag</div>
            <span>test</span>
        </div>
    </body>
    <script type="text/javascript">
        ele = document.getElementById('test');
        // 모든 태그를 제거하는 정규식
        oriText = ele.innerHTML;
        newText = oriText.replace(/(<([^>]+)>)/ig, "");
        alert(newText);
        // 원하는 태그만 제거하는 정규식
        oriText = ele.innerHTML; 
        newText = oriText.replace(/<(\/span|span)([^>]*)>/gi,"");
        alert(newText);
    </script>
    </html>

    'Database > 기타' 카테고리의 다른 글

    HTML 제거하기  (0) 2019.05.27
Designed by Tistory.