테스트 사이트 - 개발 중인 베타 버전입니다

링크 이동 문제 조언 좀 부탁드리겠습니다ㅠ 채택완료

바트코드 8년 전 조회 4,026

 

 

 

 

 

이렇게 있는데 

 

해당문서 파일이 homepage.com/mypage.php 라고하면 

homepage.com/mypage.php#3 URL을 직접 입력 하면 신청서 탭에 가고싶은데 

그게안되네요 ㅠㅠ 

탭을 클릭해도 #은 안뜨고 homepage.com/mypage.php  URL만 떠요..ㅠ

조언좀 부탁드릴게요 

 

 

 

 

댓글을 작성하려면 로그인이 필요합니다.

답변 1개

채택된 답변
+20 포인트
진서기
8년 전
로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

바트코드
8년 전
js추가하고 클래스 바꿔서 진행해봤는데 ㅠ 반응이없네요..

$(function(){

// Bind an event to window.onhashchange that, when the hash changes, gets the
// hash and adds the class "selected" to any matching nav link.
$(window).hashchange( function(){
var hash = location.hash;

// Set the page title based on the hash.
document.title = 'The hash is ' + ( hash.replace( /^#/, '' ) || 'blank' ) + '.';

// Iterate over all nav links, setting the "selected" class as-appropriate.
$('#liveEdtap a').each(function(){
var that = $(this);
that[ that.attr( 'href' ) === hash ? 'addClass' : 'removeClass' ]( 'selected' );
});
})

// Since the event is only triggered when the hash changes, we need to trigger
// the event now, to handle the hash the page may have loaded with.
$(window).hashchange();

});

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인