2014-10-28 131 views
0

我想要的,當我點擊一個按鈕去頂部並更改頁面。滾動到頂部按鈕並打開新頁面

我有這個

代碼的js>

$(document).ready(function(){ 

    //Check to see if the window is top if not then display button 
    $(window).scroll(function(){ 
     if ($(this).scrollTop() > 100) { 
      $('.scrollToTop').fadeIn(); 
     } else { 
      $('.scrollToTop').fadeOut(); 
     } 
    }); 

    //Click event to scroll to top 
    $('.scrollToTop').click(function(){ 
     $('html, body').animate({scrollTop : 0},800); 
     return false; 
    }); 

代碼的html>

<a href="<?php $url->_getURL('openpage'); ?>" class="scrollToTop">Domestic Electrical installation</a> 

感謝你的幫助

回答

0

你想要做的是使用scrollTo()方法和navigator.href財產。

試試這個:

//with JQuery: 
$(".scrollToTop").click(function(){ 
window.scrollTo(0,0); //Scrolls to a x,y pair(x = vertical y = horizontal 
navigator.href = newURL; //Sets the page of the current tab to a url value 
} 

祝你好運!

+0

你可以寫給我完整的代碼.. iam不是很好..讓自己.. tnx – user3480332 2014-10-28 22:54:16

+0

當然...我會編輯我的答案是更廣泛的。 – DripDrop 2014-10-28 22:55:13

+0

那裏。我編輯了代碼,現在可以使用它來代替點擊處理事件。很高興我能幫上忙。 – DripDrop 2014-10-28 23:00:04

相關問題