• 회원가입
  • 로그인
  • 구글아이디로 로그인

[js] JS - 모든 링크 주소를 특정 URL주소로 일괄 변경

모든 링크 주소를 특정 URL주소로 일괄 변경

 

<a href="https://naver.com" target="_blank">네이버</a>

<a href="https://google.com" target="_blank">구글</a>


<script>

document.addEventListener("DOMContentLoaded", function() {

    var allLinks = document.querySelectorAll("a");

    allLinks.forEach(function(link) {

      link.href = "https://homzzang.com";

    });

});

</script>

 

결과보기

PS. jQuery로 구현하기

방문 감사합니다. (즐겨찾기 등록: Ctrl + D)

분류 제목
게시물이 없습니다.
89/67
목록
찾아주셔서 감사합니다. Since 2012