码迷,mamicode.com
首页 > Web开发 > 详细

jquery

时间:2016-07-21 22:12:29      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:jquery


jquery基本选择器

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>jquery基本选择器</title>
</head>
<body>
    <script src="jquery-3.1.0.js"></script>
    <script>
        $=jQuery;
        $("#n1").text(‘123‘);
        $(‘div‘).text(‘xxx‘);
        $(‘.c1‘).text(‘ooo‘);
        $(‘.c1,a,#n2‘).text(‘ok‘);
        $(‘#n3 div .c3 samp a‘).text(‘kkk‘);
        $(‘.c4‘).text(‘999‘)
    </script>
</body>
</html>


jquery左侧菜单样式代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>jquery左侧菜单样式</title>
</head>
<body>
    <style>
        .menu{
            float: left;width: 30%;height: 500px;background-color:antiquewhite;
        }
        .content{
            float: left;width: 70%;height: 500px;background-color: black;
        }
        .title{
            background-color: black;
            color: white;
            height: 50px;
            line-height: 50px;;
        }
        .hide{
            display: none;
        }
    </style>
</body>
</html>






jquery

标签:jquery

原文地址:http://9272317.blog.51cto.com/9262317/1828552

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!