2013-12-12 69 views
2

嗨我正在創建一個網站,我已經在頁腳下創建了「切換部分」,但問題是當切換打開窗口不滾動到那個切換部分,這就是爲什麼人們可以沒有看到它。我想要的是當切換打開的窗口應該滾動到該部分自動點擊切換按鈕打開它。切換打開時向下滾動窗口

這是我一直在使用的Js代碼;

<script> 
jQuery(document).ready(function(){ 
    jQuery('#hideshow').live('click', function(event) {   
     jQuery('#ticket-content').toggle('show'); 
    }); 
}); 
    </script> 

並且網站在這裏; Click here for website

希望能儘快得到任何幫助。

在此先感謝。

+0

這應該幫助你開始:http://api.jquery.com/scrollTop/ – slamborne

回答

0

嘗試:

jQuery(document).ready(function(){ 
    jQuery('#hideshow').live('click', function(event) {   
     jQuery('#ticket-content').toggle(function(){ 
      jQuery('html, body').animate({ 
       scrollTop: jQuery(this).offset().top 
      }, 2000); 
     }); 
    }); 
}); 
+0

直播點擊可以在外面工作的文件準備..... –

+0

非常感謝隊友,你救了我的命:)它的工作原理就像一個cack :) –

1

試試這個。我可能會幫助你。

jQuery(document).ready(function(){ 
    jQuery('#hideshow').live('click', function(event) {   
     jQuery('#ticket-content').toggle('show',function() { 
      jQuery('html, body').animate({ 
       scrollTop: jQuery(this).offset().top 
      }, 2000); 

     }); 
    }); 
}); 
相關問題