因?yàn)槭亲杂肙A上使用,所以只看了Chrome和IE11的兼容,如果遇到問題歡迎反饋.
|
$(function() { $(window).scroll(function() { if($(this).scrollTop() != 0) { $("#toTop").fadeIn(); } else { $("#toTop").fadeOut(); } }); $("body").append("<div id=\"toTop\" style=\"border:1px solid #444;background:#333;color:#fff;text-align:center;padding:10px 13px 7px 13px;position:fixed;bottom:10px;right:10px;cursor:pointer;display:none;font-family:verdana;font-size:22px;\">^</div>"); $("#toTop").click(function() { $("body,html").animate({scrollTop:0},800); }); }); |