JQUERY根据页面高度显示返回顶部链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQUERY根据页面高度显示返回顶部链接相关的知识,希望对你有一定的参考价值。
$(document).ready(function(){ var height = $("#main").height(); if (height > 700) { $(".top").show(); } else { $(".top").hide(); } }); </script> <div id="main" style="border:1px dashed #ccc;"> <p>If content in this div gets higher than 700px, link will show</p> </div> <div class="top"><a href="#">Back to top</a></div>
以上是关于JQUERY根据页面高度显示返回顶部链接的主要内容,如果未能解决你的问题,请参考以下文章