我這個小啄: http://jsfiddle.net/7hqyq/jQuery的褪色內容+ DIV變化
而且因爲我是新來的jQuery,我想知道如何更改選定方的背景顏色(因此的第一個廣場上加載頁面)。以及如何淡入/淡出細節div的內容文本。
在此先感謝;)
HTML:
<div class="square" contentId="c1"></div>
<div class="square" contentId="c2"></div>
<div class="square" contentId="c3"></div>
<div class="square" contentId="c4"></div>
<div id="details">Content for div 1</div>
<div style="display: none" id="c1"> Content for div 1</div>
<div style="display: none" id="c2"> Content for div 2</div>
<div style="display: none" id="c3"> Content for div 3</div>
<div style="display: none" id="c4"> Content for div 4</div>
CSS:
.square{
width: 80px;
height: 80px;
margin: 10px;
float: left;
background: #CCC;
}
#details{
width: 380px;
height: 100px;
margin: 10px;
float: left;
background: #999;
}
的jQuery:
$(".square").on("click", function() {
var id= $(this).attr("contentId");
$("#details").html($("#" + id).html());
});
'contentId'是無效的屬性,使用'數據內容識別= 「」'(!小寫) –