您好我正在一个我在页脚下创建“切换部分”的网站上工作,但问题是当切换打开时窗口不会滚动到那个切换部分,这就是为什么人们看不到它。我想要的是当单击切换按钮打开它时,切换打开窗口应自动滚动到该部分。
这是我一直在使用的Js代码;
<script>
jQuery(document).ready(function(){
jQuery('#hideshow').live('click', function(event) {
jQuery('#ticket-content').toggle('show');
});
});
</script>
网站在这里; Click here for website
希望尽快得到任何帮助。
提前致谢。
答案 0 :(得分: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);
});
});
});
答案 1 :(得分: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);
});
});
});