<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<h4>attr()</h4>
<a href="https://www.google.com/">이동하기</a>
<br />
<button type="button" onclick="changeAttrJs()">js로 바꾸기</button>
<button type="button" onclick="changeAttrJquery()">jquery로 바꾸기</button>
<hr />
function changeAttrJs() {
let a = document.querySelector('a');
a.setAttribute('href', 'https://www.naver.com/');
}
function changeAttrJquery() {
$('a').attr('href', 'https://velog.io/@sally3921/posts');
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.