링크 변경 jquery 질문
본문
[code]
$(document).ready(function(){
$("a").attr("href", "https://wow.com");
});
{/code]
a href 의 주소를 해당 주소로 변경하는데 여기에
+를 이용하여 기존 주소를 붙일수 있을까요
[code]
$(document).ready(function(){
$("a").attr("href", "https://wow.com" + this.href);
});
{/code]
이런식으로..
답변 1
$(document).ready(function(){
var href = $("a").attr("href");
$("a").attr("href", "https://wow.com" + href);
});
답변을 작성하시기 전에 로그인 해주세요.