我想,当我点击按钮转到顶部并更改页面时。
我有这个
代码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 :(得分: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
}