//滚动条
$('#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);
});