jquery实现鼠标模拟超链接点击效果(代码分享)

发布时间:2020-06-20编辑:脚本学堂
有关jquery 实现鼠标模拟超链接点击效果的一段代码,点击超链接实现与隐藏效果,需要的朋友参考下。

例子jquery鼠标模拟用户点击事件代码
 

复制代码 代码示例:
<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 #">链接一</a><br />
<a #">链接二</a><br />
<a #">链接三</a>
</div>
</div>
</body>