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

夺命雷公狗jquery---1选择元素的3种方法

时间:2015-10-18 22:59:50      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="js/jquery.js"></script>
        <script>
            window.onload = function(){
                document.getElementById(btnok).onclick=function(){
                    //id选择器
                    //$(‘#div3‘).html(‘aaaaaaa‘);
                    //class选择器
                    $(.div2).html(aaaaaaaaaaaaaa);
                    //多标签选择
                    $(h1,div).html(aaaaaaaaa);
                }
            }
        </script>
    </head>
    <body>
        <input type="button" id="btnok" value="OK" />
        <hr>
        <h1>111111</h1>
        <hr>
        <div>222222222</div>
        <div class="div2">333333333</div>
        <div id="div3">444444444</div>f
    </body>
</html>

 

夺命雷公狗jquery---1选择元素的3种方法

标签:

原文地址:http://www.cnblogs.com/leigood/p/4890484.html

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