HTML:
<div id="tab">This is a paragraph.</div>
<div id="tab">This is a paragraph.</div>
<div id="tab">This is a paragraph.</div>
<div id="tab">This is a paragraph.</div>
CSS:
#tab{
height:30px;
width:130px;
background-color:red;
}
查询:
$(document).ready(function() {
function randomNumber() {
return Math.floor(Math.random() * 255)
}
$('#tab').mouseover(function() {
$('#tab').css('background-color', 'rgb(' + randomNumber() + ',' + randomNumber() + ',' + randomNumber() + ')');
});
$('#tab').mouseout(function() {
$('#tab').css('background-color', 'white');
});
});
我有这个小提琴,我希望颜色变化影响所有#tabs,而不仅仅是第一个,我该怎么做?
小提琴示例可以在这里找到。