的CSS我還有3個單選按鈕1),2)右3)無如何操縱在運行時
所以當我懸停在單選按鈕我顯示下面3個的div,各有不同的CSS。
#popupdiv img {
float: right;
clear: right;
margin: 15px
}
#popupdiv img {
float: left;
clear: left;
margin: 15px
}
#popupdiv img {
float: random; //i want the image to be display randomly in the div
clear: random;
margin: 15px
}
<div id='popupdiv'>
<img src='http://www.hostname.com/images/a.jpg' width='100' height='100' border='0' />
<img src='http://www.hostname.com/features/b.jpg' width='100' height='100' border='0'/>
<p>same text for all three divs.....
</div>
我想要做的是有一個div,並根據用戶懸停在哪個單選按鈕來更改css。我該怎麼做呢?
您標記此與jQuery。你使用jQuery嗎?或者你會只使用JavaScript做到這一點? – 2011-05-17 14:39:45
是的,我正在使用jquery – 2011-05-17 14:47:19