본문 바로가기

프로그래밍 예제/ 예제

클릭으로 스크롤 이동 (메뉴) 자바스크립트 예제

$(".built-in-lnb a").on('click', function(event) {


        if (this.hash !== "") {
         event.preventDefault();
    
         var hash = this.hash;
    
         $('html, body').animate({
            scrollTop: $(hash).offset().top
         }, 600, function(){
            window.location.hash = hash;
         });
        }
    });


.href -> the entire of a url

.hostname -> the hostname of a url (도메인 이름 또는 url 의 ip 주소를 나타내는 문자열)

.host -> the hostname and port number of a url

.hash -> hash 속성은 해시 기호(#)를 포함하여 url의 앵커부분을 설정 혹은 반환