console
jQuery(document).ready(function($) {
if($("meta[name=toTop]").attr("content")=="true"){
$("<div id='toTop'><img src='http://ossweb-img.qq.com/images/chanpin/v2/public/jq_demo/images/back.png'></div>").appendTo('body');
$("#toTop").css({
width: '50px',
height: '50px',
bottom:'10px',
right:'15px',
position:'fixed',
cursor:'pointer',
zIndex:'999999',
});
if($(this).scrollTop()==0){
$("#toTop").hide();
}
$(window).scroll(function(event) {
if($(this).scrollTop()==0){
$("#toTop").hide();
}
if($(this).scrollTop()!=0){
$("#toTop").show();
}
});
$("#toTop").click(function(event) {
$("html,body").animate({
scrollTop:"0px"},
500
)
});
}
});
<meta name="toTop" content="true">
<div>向下滚动查看效果</div>
* { margin:0; padding:0}
html {
height:1000px;
font-family: "Microsoft Yahei", "SimSun", "Arial";
background:#fff;
}