<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>当当网我的订单页</title>
    <link type="text/css" rel="stylesheet" href="css/dangdang.css">
    <script type="text/javascript" src="js/jquery-1.12.4.js"></script>
    <script type="text/javascript">
        $(function(){
            $("#menu-ul").hide();
            $("a").eq(0).mouseover(function(){
                $("#menu-ul").show().css("border","1px solid #ee7304");
            }).mouseout(function(){
                $("#menu-ul").hide().css("border","none");
            })

        })

    </script>
</head>
<body>
<div id="menu" class="pos">
    <a href="#">我的当当</a>
    <ul id="menu-ul">
        <li><a href="#">我的订单</a></li>
        <li><a href="#">我的收藏</a></li>
        <li><a href="#">我的礼品卡</a></li>
        <li><a href="#">我的积分</a></li>
        <li><a href="#">我的余额</a></li>
    </ul>
</div>
</body>
</html>
dangdang.html

相关文章:

  • 2021-07-05
  • 2021-09-30
  • 2021-05-15
  • 2021-12-22
  • 2022-12-23
  • 2021-09-12
  • 2021-11-26
猜你喜欢
  • 2022-01-07
  • 2022-01-07
  • 2022-12-23
  • 2021-04-09
  • 2022-12-23
  • 2021-11-11
相关资源
相似解决方案