我正在为jquery设计一个垂直滚动条插件。我的插件接受一个高度值作为选项,如果div高度超过给定的高度,滚动条将是可见的。现在的问题是我需要得到div内容的真实高度。
<div id="scroll">
Contents Here
</div>
jquery:
$.fn.vscrollbar = function (options) {
.
.
.
var contentHeight=this.contents().height() //that is not working correctly
我觉得这个问题的答案会简单得令人尴尬,但它消耗了很多时间,我看不到解决方案。我正在做一个简单的无限滚动功能,需要脚本来识别后加载更多的内容窗口的新高度。该值始终与第一次加载时间相同。我基于编写了这段最新的代码,但它仍然不能工作。有什么想法?
var scrollFunction = function(){
var myTop = jQuery(window).scrollTop();
var myHeight = jQuery(window).height();
if (myTop >= myHeight){
$(
我在jQuery片段上有一个错误,我不是jQuery专家。我有一个滚动div,它将自动滚动具有以下功能。
// When DOM is fully loaded
jQuery(document).ready(function ($) {
function scroll(speed) {
$('.shooter-scroller').animate({
scrollTop: $(document).height() - $('.shooter-scroller').height()
}, fast,
我试图使用函数JqueryTools替换浏览器的本机滚动条。
下面是示例页面:
该页面具有多个可滚动的div,具有以下html结构:
<div class="scrollwrap"><!-- scrollwrap doesn't move and has overflow:hidden -->
<div class="scroll"><!- this is the scrollable pane --></div>
<!-- this is the rangecontro