欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jQuery模擬超鏈接點(diǎn)擊效果代碼

 更新時(shí)間:2013年04月21日 16:29:30   作者:  
本文將為大家介紹下jQuery模擬超鏈接點(diǎn)擊效果實(shí)現(xiàn),感興趣的朋友可以參考下哈,希望對(duì)你有所幫助
復(fù)制代碼 代碼如下:

<style type="text/css">
.divFrame {
width:260px;border:1px solid #666;font-size:10pt;
}
.divTitle {
background-color:#eee;padding:5px;
}
.divContent {
padding:5px;display:none;
}
.divCurrColor {
background-color:red;
}
</style>
<script src="jQuery/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(function () {
$('.divTitle').click(function () {
$(this).addClass('divCurrColor').next('.divContent').css('display', 'block');
})
})
</script>
</head>
<body>
<div class="divFrame">
<div class="divTitle">主題</div>
<div class="divContent">
<a href="#">鏈接一</a><br />
<a href="#">鏈接二</a><br />
<a href="#">鏈接三</a>
</div>
</div>
</body>

相關(guān)文章

最新評(píng)論