jquery的使用-4

 

 

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="./js/jquery.min.js"></script>
    <style>
        div {
            width: 100px;
            height: 100px;
            background-color: black;
        }
    </style>
</head>
 
<body>
    <script>
        /* $(document).ready(function(){
            $('div').hide();
        }) */
        //第二种方式
        $(function(){
            $('div').hide();
        })
    </script>
    <div></div>
 
</body>
 
</html>

posted @ 2022-06-09 18:01  前端导师歌谣  阅读(16)  评论(0)    收藏  举报