是的,我在这里查看了相同的文章,谷歌提供了帮助。但我是设计师,不是编码员。我可以复制\粘贴一些代码,甚至改变一些东西,但是这个问题对我来说太难了。
所以,我的主页上有新闻,当你向下滚动时,下一页会加载 ajax。有一个脚本,显示\隐藏每个帖子的评分栏。但是此代码在加载的内容中不起作用。请修复它,如果它对你来说不难的话。
ps 我试过调查on(),还是活的,但正如我之前伤心的那样,不是我的水平。
$(document).ready(function() {
var element = $('#dle-content .main-news');
for (i=0; i<element.length; i++)
{
$(element[i]).addClass('news-'+i);
}
$('#dle-content .main-news').hover(
function() {
$('.main-news-hidden').stop(true);
$(this).find('.main-news-hidden').animate({
'bottom':'0'
},400
);
}, function() {
$('.main-news-hidden').stop(true);
$(this).find('.main-news-hidden').animate({
'bottom':'-120'
}, 0);
$('.main-news-hidden').stop(true);
});
$('.top-news li').hover(
function() {
$('.top-news-hidden').stop(true).fadeOut(0);
$(this).find('.top-news-hidden').animate({
'opacity':'1'
},400, function()
{
$(this).fadeIn();
}
);
}, function() {
$('.top-news-hidden').stop(true);
$(this).find('.top-news-hidden').fadeOut(100);
});
var element2 = $('.top-news li');
for (i=0; i<element2.length; i++)
{
$(element2[i]).find('.list').append(i+1);
}
});