我是编码新手,目前正在接受使用jQuery进行Web开发的培训。
我试图在本地服务器上运行jQuery。我已经下载了最新版本的jQuery“ jQuery 3.3.1-min.js”。我已经迅速保存了它,但是当我检查它是否正确安装时,似乎jQuery并未正确嵌入。
我使用了确切的以下脚本进行检查:
if (typeof jQuery == "undefined") {
alert("Not Correct");
} else {
alert("Correct");
}
我需要知道如何通过js正确安装jQuery。
谢谢您的帮助!
答案 0 :(得分:-1)
这可能有帮助........
if(typeof jQuery === 'undefined'){
console.log('no jQuery');
}else{
console.log('jQuery is embedded!');
}
答案 1 :(得分:-1)
您可以使用以下代码将其添加到html的头部:
<!DOCTYPE html>
<html>
<head>
<script src="/folder contain the js file/jQuery file">
</script>
</head>
或者找到jQuery CDN,无需下载jQuery CDN,它就托管在Google或Microsoft上,您可以使用它。这是示例:
<!DOCTYPE html>
<html>
<head>
<!-- Google Hosted-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- Microsoft Hosted-->
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js">
</script>
</head>