2013-12-11 122 views

回答

0

我敢肯定有這很大的CSS技巧,但我只想呈現下的所有佔位符DIV的內容。

http://jsfiddle.net/3z4mP/

[JS]

$(".content").hide(); 

$(".heading").click(function() { 
    var content = $(this).next(".content").text(); 
    $('#renderhere').text(content).slideToggle(); 
});