$(ducument).ready(function(){
function comment_sh(){
$("div.comment").hide();
$("div.footer > a.comment_button").click(function(){
if($(this).hasClass('comment_button')){
$(this).fadeOut().removeClass('comment_button').addClass('comment_active').fadeIn();
}else if($(this).hasClass('comment_active')) {
$(this).fadeOut().removeClass('comment_active').addClass('comment_button').fadeIn();
}
$(this).parents("div.footer").next("div.comment").slideToggle();
});
}
comment_sh();
function scrollpage(){
$(window).scroll(function(){
var windowtHeight = $(window).height();
if($(window).scrollTop() +1 >= $(document).height() - windowtHeight){
$.ajax({
url: '../action/post_load.php',
type: 'POST',
data: data,
cache: false,
success: function(html){
if(html == 'false'){
//$("div#box:last").after('<div id="note_no_data_status"><a>No content</a></div><br />');
}else {
//$("div#box").after(html);
comment_sh();
}
}
});
}
});
});
scrollpage();});
滚动功能()运行后。 Scrollpage函数()运行了多少次执行的事件,comment_sh function()现在增加了多少次。 Ps:很抱歉要了解jQuery