jQuery
JavaScript
jQuery库,里面存在大量的javascript函数
获取jQuery
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!--cdn引入-->
<!-- <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>-->
<script src="lib/jquery-3.6.0.js"></script>
</head>
<body>
<!--公式:$(selector).action()-->
<a href="" id="text-jquery">点我</a>
<script>
document.getElementById('id');
//选择器就是css的选择器
$('#test-jquery').click(function () {
alert('hello, jQuery');
})
</script>
</body>
</html>