站内搜索:
首页 >> 前端 >> 内容
返回顶部的功能

时间:2017/3/18 9:29:00

返回顶部的功能:对于长时间点击单页面非常实用,你可以在重要关头点击“返回顶部”功能。
$(document).ready(function() {

    $('#top').click(function() {
        //scoll the page back to the top
        $(document).scrollTo(0,500);
    }
});

  • 上一篇:mina框架通信机制
  • 下一篇:使用git将项目代码上传到gitHub上
  • 返回顶部