我正在尝试实现无限滚动功能,但似乎我的代码无效。你能救我吗?
select sum(numberofpieces)
from Test
where dateofwork <= current_timestamp
and dateofwork >= (((to_char(level+trunc(current_timestamp,'D'),'Day') * -1) + current_timestamp) + 1)
Bellow是我的HTML代码:
$(document).ready(function(){
var origElement = $('.scroll').clone();
if($(window).width() > 500){
$('.scroll').jscroll();
}
$(window).resize(function(){
if($(window).width() < 500){
alert($(window).width());
$('.scroll').remove();
$('#container').append(origElement);
}
else{
$('.scroll').jscroll();
}
});
});
由于
我正在尝试在JSFIDDLE中运行第一个示例,但它似乎无效:http://jscroll.com/