我有一個固定的菜單,使用jQuery來平滑滾動到一個錨點,工作正常 - 但是當我使用腳本錨點鏈接不再出現在URL中。有任何想法嗎?獲取錨#id url回到jquery
該網站是http://www.julianvanmil.com
聽到我正在使用的代碼;
<script>
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 400);
});
});
$(function() {
var bar = $('.logo');
var top = bar.css('top');
$(window).scroll(function() {
if($(this).scrollTop() > 700) {
bar.stop().animate({'top' : '35px'}, 300);
} else {
bar.stop().animate({'top' : top}, 300);
}
});
});
</script>
感謝
我們需要更多的信息,而不僅僅是一個鏈接到您的網頁。請看這個:http://meta.stackexchange.com/q/125997 – 2013-03-07 18:15:06