You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
-
- <link rel="stylesheet" type="text/css" href="./css/ace.min.css" />
- <link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css" />
- <link rel="stylesheet" type="text/css" href="./css/bootstrap-timepicker.css" />
- <link rel="stylesheet" type="text/css" href="./css/font-awesome.min.css" />
- <link rel="stylesheet" type="text/css" href="./css/daterangepicker.css" />
- <link rel="stylesheet" type="text/css" href="./css/datepicker.css" />
- <link rel="stylesheet" type="text/css" href="./css/master.css">
- <script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
- <script type="text/javascript" src="js/car_team_list.js" ></script>
- <script type="text/javascript" src="js/date-time/bootstrap-datepicker.min.js"></script>
- <script type="text/javascript" src="js/date-time/bootstrap-timepicker.min.js"></script>
-
-
- <title>车队列表</title>
- </head>
-
- <style type="text/css">
- .li_title {text-align: left;position:relative;float:left;width:100%;line-height:60px;height:60px;background:#cccccc;list-style:none;margin:2px 0px 0px 0px;padding:0px 5px 0px 5px;font-weight:600;overflow:hidden;cursor:pointer;}
- .li_title:hover{color: blue;}
- .li_content {text-align: left;margin-left: 30px;width:100%;background:#ffffff;list-style:none;marggin:0px 0px 0px 0px;padding:5px 5px 5px 5px;overflow:hidden;display:none;}
- .li_title span{float:left;display: inline-block;font-size: 25px;text-align: center;}
- </style>
-
- <body>
- <div class="container" style="margin: 0 auto;width: 95%;text-align: center;margin-top: 40px;">
- <ul id="all_ul">
- <li class="li_title" onclick="show_detail(11)">
- <span>上海道顺</span>
- <span>www.baidu.com</span>
- </li>
- </ul>
- </div>
- </body>
- </html>
|