//滾動條
$('#flux').on('scroll', function() {
if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
alert('end reached');
}
})
//滾動條
$(window).scroll(function() {
if($(window).scrollTop()?+?$(window).height()?==?$(document).height())?{
alert("bottom!");
}
});
//獲取body內容
$.get($(this).attr("href"), function(data) {
var body=data.replace(/^.*?(.*?)<\/body>.*?$/s,"$1");
$("body").html(body);
});