js和jQuery库,存在大量的js函数

获取jQuery

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Title</title>
 6     <script src="lib/jquery-3.4.1.js"></script>
 7 </head>
 8 <body>
 9 
10 <!--
11 
12     公式: $(selector).action()
13 
14 
15 -->
16 <a href="" id="test-jquery">点我</a>
17 <script>
18     // var id = document.getElementById('test-jquery');
19     // id.click();这种要
20     //选择器就是css选择器
21     $('#test-jquery').click(function () {
22         alert('hello');
23     })
24 </script>
25 
26 </body>
27 </html>

 

版权声明:本文为doremi429原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/doremi429/p/16076349.html