<div class="item" rel="a">1</div>
<div class="item" rel="b">2</div>
<div class="receive" rel="a">1</div>
<div class="receive" rel="b">2</div>
.item[rel='a'] {
width:50px;
height:50px;
background: pink;
}
.item[rel='b'] {
width:50px;
height:50px;
background: orange;
margin-left:20px;
}
.receive {
margin-top:20px;
border:1px solid;
width:50px;
height:50px;
}
如何讓接收器接收項目的顏色?我可以做匹配循環內的多個項目和屬性
bg = $('.item').css('background');
$('.receive').css('background',bg);
但我希望它能匹配使用'rel'屬性,我有多個接收器。我應該循環嗎?
你有多少條記錄..? – Yash 2015-04-02 10:26:12
爲什麼不使用簡單的CSS呢? – haim770 2015-04-02 10:26:43