jQuery入门
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>