1. 程式人生 > >Vue滾動到底部自動載入

Vue滾動到底部自動載入

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();							// 呼叫方法
		}
	});
}