美文网首页
jquery 选择器

jquery 选择器

作者: 程序猿的小生活 | 来源:发表于2022-07-05 08:50 被阅读0次
    <html>
        <head>
            <script src="js/jquery.js"></script>
            <script src="js/test.js"></script>
            <meta charset="utf-8" />
            <title>jquery css</title>
        </head>
        <body >
        <div id="app">
            <button id="btn"></button>
        </div>
        <div id="singlestyle">
                <button id="btn"></button>
            
        </div>
                
                
        
        </body>
        <script>
    $(function(){
        //选择#singlestyle下 #btn 更改样式
        $("#singlestyle #btn").text("你好")
            //选择#singlestyle和 #app 更改样式
    $("#app,#singlestyle").css({
        "width":"200px",
        "height":"200px",
        "background-color":"pink",
        "margin-top":"20px"
    })
    
        
    })
    
            
        </script>
    </html>
    
    

    相关文章

      网友评论

          本文标题:jquery 选择器

          本文链接:https://www.haomeiwen.com/subject/wjmdbrtx.html