是的,我在這裏查看槽相同的文章,谷歌幫助。但我是一名設計師,而不是編碼員。我可以複製\粘貼一些代碼,甚至改變一些東西,但這個問題對我來說太難了。jquery代碼無法在ajax加載的內容中工作
所以,我在我的主頁上有新聞,當你向下滾動時,下一頁加載ajax。有一個腳本,爲每個帖子顯示\隱藏評級欄。但是這個代碼在加載的內容中不起作用。請修復它,如果它不適合你。
p.s.我嘗試着看(),或者活下去,但是因爲我以前難過,而不是我的水平。
$(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);
}
});
非常感謝,解決方案3的幫助。這是代碼,很好用。 $( 「#內容」)。鼠標指向(函數(){\t \t \t $(」。主新聞)。懸停( \t \t功能(){ \t \t \t $(本).find( 」。主要新聞隱藏 ')停止()動畫({ \t \t \t \t '底部':' 0' \t \t \t},400 \t \t \t); \t \t},閃光功能。重刑(){ \t \t \t $(本).find(」主新聞隱藏。 ')停止()動畫({ \t \t \t \t '底部':' - 135' \t \t \t}。 ,300 \t \t \t); \t}); }); – noid