我一直使用jQuery文件来使用jQuery。最近我听说使用CDN。我想问一下你是如何使用它的,以及这行代码的作用:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
内容交付网络CDN是指一组地理分布的服务器,它们协同工作以提供互联网内容的快速交付。
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>Click me</button>
</body>
</html>
您是指任何CDN还是自己托管?谷歌有一个用于jquery的CDN(可在此处找到https://developers.google.com/speed/libraries)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
这可能对您有所帮助:https://code.jquery.com/
选择您想要的jQuery版本(我更喜欢缩小的jQuery3.x(。
当你选择jQuery版本(也有选项(时,你可以复制像这样的脚本
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
在html<head>
:中插入脚本
...
<html>
<head>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
</head>
<body>
</body>
</html>
...