Jquery模拟超链接点击效果的代码示例

发布时间:2020-05-27编辑:脚本学堂
如何用Jquery模拟超链接的点击效果呢?本文为大家举一个例子,实现以上的需求,供大家参考。

代码如下:

<html>
<head>
<title>jquery模拟超链接的点击效果-www.jb200.com</title>
<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="#">脚本学堂_www.jb200.com</a><br />
<a href="#">链接二</a><br />
<a href="#">链接三</a>
</div>
</div>
</body>
</html>