首页 > 其他 > 详细

解决pc端选中效果

时间:2017-07-12 17:34:21      阅读:276      评论:0      收藏:0      [点我收藏+]

<style>

*{ margin:0; padding:0; list-style:none;}

body{ font:normal 14px/24px ‘MicroSoft YaHei‘;}

.cotrs{ width:960px; height:32px; line-height:32px; background:#999; margin:0 auto;}

.cotrs a{ height:32px; line-height:32px; color:#fff; text-decoration:none; padding:0px 10px; display:block; float:left;}

.cotrs a:hover{ text-decoration:none; background:#000;}

.cotrs a.thisclass{text-decoration:none; background:#000;}

</style>

<body>

<div class="cotrs">

<a href=‘javascript:class="thisclass">菜单一</a>

<a href=‘javascript:‘>菜单二</a>

<a href=‘javascript:‘>菜单三</a>

<a href=‘javascript:‘>菜单四</a>

<a href=‘javascript:‘>菜单五</a>

 </div>

</body>

<script>

 $(function(){
        var cotrs = $(".cotrs a");
        cotrs.click(function(){
            $(this).addClass("thisclass").siblings().removeClass("thisclass");
        });
    });

</script>

解决pc端选中效果

原文:http://www.cnblogs.com/gerry/p/7156318.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!