• jquery多条件选择器


    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title></title>
    <meta charset="utf-8" />
        <script src="jquery-3.3.1.js"></script>
        <script>
            $(function () {


                $('#btn').click(function () {
                    $('p,strong,div.cls').css('backgroundColor', 'orange');
                })
            })
        </script>
    </head>
    <body>
        <input type="button" name="name" value="效果" id="btn"/>
        <p>这是p</p>
        <strong>这是strong</strong>
        <div class="cls" style="50px;height:50px">


        </div>
        <div style="300px;height:200px;background-color:yellow">


        </div>
    </body>
    </html>
  • 相关阅读:
    CTF SQL注入知识点
    Rot13加密算法
    LFU缓存
    Redability
    快排
    更新卡片的zIndex
    webshell文件下载器
    [转]背包九讲
    hihocoder第196周
    Python import容易犯的一个错误
  • 原文地址:https://www.cnblogs.com/dxmfans/p/9434840.html
Copyright © 2020-2023  润新知