自丢网

标题: jQuery基本使用教程之入口函数 [打印本页]

作者: admin    时间: 2020-3-4 16:36
标题: jQuery基本使用教程之入口函数
jQuery基本使用教程之入口函数
  1. <!DOCTYPE html>
  2. <html lang="en">

  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <script src="jquery.min.js"></script>
  7.     <title>Document</title>
  8. </head>

  9. <body>
  10.     <style>
  11.         div {
  12.             width: 200px;
  13.             height: 200px;
  14.             background-color: pink;
  15.         }
  16.     </style>
  17.     <div>

  18.     </div>
  19.     <script>
  20.         $(function() {
  21.             $('div').hide();
  22.         });
  23.     </script>
  24. </body>

  25. </html>
复制代码






欢迎光临 自丢网 (https://www.zidiu.com/) Powered by Discuz! X3.5