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

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

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

 

<script src="https://code.jquery.com/jquery-latest.js"></script>

     

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

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


<script>

$(document).ready(function() {

    $("a").each(function() {

        $(this).attr("href", "https://homzzang.com");

    });

});

</script>

 

결과보기 

PS. 순수 JavaScript 코드로 구현하기

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

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