$(document).ready(function() {
$(window).scroll(function() {
if ($(document).scrollTop()<=0){
alert("滾動條已經到達頂部");
}
if ($(document).scrollTop() >= $(document).height() - $(window).height()) {
alert("滾動條已經到達底部!");
}
});
});