이 기사의 예에서는 jQuery가 앵커 스크롤 효과를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
$('a[href*=#]') .click( 함수() {
if (location.pathname.replace(/^//,'') == this.pathname.replace(/^//,'')
&& 위치.호스트 이름 == this.호스트 이름) {
var $target = $(this.hash);
$target = $target.length && $target
|| $('[name=' this.hash.slice(1) ']');
If ($target.length) {
var targetOffset = $target.offset().top;
var obj = document.documentElement
If (jQuery.browser.safari)
obj = document.body
If (jQuery.browser.msie)
obj = 'html';
$(obj).animate({scrollTop: targetOffset}, 1000);
false를 반환합니다.
}
}
});
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.