87,991
社区成员
发帖
与我相关
我的任务
分享
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function(){
$(".ddd").hover(
function () {
$(this).css({"background-color":"red","font-size":"200%"});
},
function () {
$(this).css({"background-color":"blue","font-size":"50%"});
}
);
});
</script>
<a style="width:230px; height:60px; position:absolute; left:100px; top:0px; background:#FF0; z-index:9999; display:block; " class="ddd">123</a>
<script type="application/javascript">
$(document).ready(function() {
$(".ddd").hover(
function () {
$(this).css({"background-color":"red","font-size":"200%"});
},
function () {
$(this).css({"background-color":"red","font-size":"200%"});
}
);
});
</script>