Vue滚动到底部自动加载
mounted: function mounted() {$("#S_content").scroll(function() {var scrollHeight = $("#S_content").scrollTop();// 滚动高度var rHeight = $("#S_content").get(0).scrollHeight;//
·
mounted: function mounted() {
$("#S_content").scroll(function() {
var scrollHeight = $("#S_content").scrollTop(); // 滚动高度
var rHeight = $("#S_content").get(0).scrollHeight; // 内容高度
var seeHeight = $("#S_content").height(); // 可见高度
if (scrollHeight + seeHeight >= rHeight) {
app.fourSMore(); // 调用方法
}
});
}
更多推荐
已为社区贡献3条内容
所有评论(0)