retun후 새로고침 방법
본문
var href = $(this).attr("href")+"&js=on";
$(this).attr("href", href);
return true;
자바스크립트 click(function() 이벤트에서 return true; 후 창 새로고침을 하고싶은데
아무리해봐도 되질 않더라구요
방법이 없을까요?
!-->답변 2
location.reload();
이렇게 해 보셨나요??
function temp(){
//기존 함수
var href = $(this).attr("href")+"&js=on";
$(this).attr("href", href);
return true;
}
function reload(){
//기존함수의 결과를 받는 추가함수
if(temp()){
location.reload();
}
}
이런식으로 호출하는 구간을 상위로 하나 더 만들어주고 결과값으로 처리하면 되지 않을까요
답변을 작성하시기 전에 로그인 해주세요.