2009-05-30 47 views

回答

1

您必須先將對象添加到DOM中,然後才能顯示它並在其上使用效果。

例如:

content.appendTo('#somedivid').hide().fadeIn(); 
0

你必須將其追加到DOM,隱藏它,然後在淡出它:

for(i=0, x=content.length; i<x; i++){  
    $('<p />').text(content[i]).appendTo('#container').hide().fadeIn(); 
} 

Asuming的內容是文本的數組你你想要添加到#container。

0

如果陣列中的每個元素含有被關聯到頁面佈局的元素的ID,你可以這樣做:

$('#'+content[i].id).fadeIn(); 
0

我不知道我理解正確的問題,但它的工作原理相同與您提到的text()或html()函數一樣:

var elements = $('.test'); 
// elements is an array of all elements with class 'test' 

// now fade all these elements out: 
elements.fadeOut('slow'); 
相關問題