<script src="js/jquery-1.9.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
var Width =document.documentElement.clientWidth;//取得手机屏幕宽度
var Height = document.documentElement.clientHeight;
$(document).on('touchmove',function(){//将文档绑定手机滑屏事件
var TopVaule = document.body.scrollTop;
if(TopVaule>Height){
$(".top").css({display:'block'});
}else{
$(".top").css({display:'none'});
}
})
$(".top").click(function(){
$(document).scrollTop(0);
$(".top").css({display:'none'});
})
})
</script>
<script type="text/javascript">
$(function(){
var Width =document.documentElement.clientWidth;//取得手机屏幕宽度
var Height = document.documentElement.clientHeight;
$(document).on('touchmove',function(){//将文档绑定手机滑屏事件
var TopVaule = document.body.scrollTop;
if(TopVaule>Height){
$(".top").css({display:'block'});
}else{
$(".top").css({display:'none'});
}
})
$(".top").click(function(){
$(document).scrollTop(0);
$(".top").css({display:'none'});
})
})
</script>