<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://lib.baomitu.com/jquery/3.6.0/jquery.js"></script>
</head>
<body>
</body>
</html>
CDN引入
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!-- <script src="https://lib.baomitu.com/jquery/3.6.0/jquery.js"></script>-->
<script src="js.html">
</script>
</head>
<body>
</body>
</html>
文件引入
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://lib.baomitu.com/jquery/3.6.0/jquery.js"></script>
<!-- <script src="js.html">-->
<!-- </script>-->
</head>
<body>
<a href=""id="test-jquery">点我试试</a>
<!--公式:$(selector).action()-->
<script>
//选择器就是css选择器
$("#test-jquery").click(function (){
alert("试试就试试");
})
</script>
</body>
</html>
jQuery API 中文文档 | jQuery API 中文在线手册 | jquery api 下载 | jquery api chmjQuery API 1.x - 3.x 中文在线版,jQuery API 中文最新版,jQuery 是一个兼容多浏览器的 JavasSript 框架,核心理念是 - write less, do more。jQuery API 中文文档(适用jQuery 1.0 - jQuery 3.x).https://jquery.cuishifeng.cn/中文版的jQuery工具站
|