$(".con").scroll(function(){
var h1=$(this).height(),----------------------滾動條局部區域可視高度;
h2=$(this).scrollTop(),------------------滾動條頂部距離可視區域頂部高度(滾動高度);
h3=$("#two").height();------------------需要滾動模塊實際高度;
三者關系:h1+h2=h3;
if(h1+h2=h3){
console.log("滾動條已經觸底");
}
})