html超链接怎么设置到下⼀页,怎么设置超链接到⼀个⽹页html
head/head
script type=text/javascript
$(document).ready(function(){
//⾸先将#back-to-top隐藏
$(#back-to-top).hide();
//当滚动条的位置处于距顶部100像素以下时,跳转链接出现,否则消失
$(function () {
$(window).scroll(function(){
if ($(window).scrollTop()100){
$(#back-to-top).fadeIn(1500);
}
else
{
$(#back-to-top).fadeOut(1500);
}
});
//当点击跳转链接后,回到页⾯顶部位置
$(#back-to-top).click(function(){
$('body,html').animate({scrollTop:0},1000);
return false;
});
});html代码转链接
});
/script
取消
评论

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。