gpt4 book ai didi

jquery - 在html中链接jquery

转载 作者:行者123 更新时间:2023-12-03 21:35:53 24 4
gpt4 key购买 nike

我无法成功将 jQuery 链接到我的 html。我已经编写了最简单的 jQuery 代码,所以我知道它是正确的,并且我已经尝试了我能想到的一切 - 搜索没有帮助..

我的html(文件名:“test.html”:

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<link rel="stylesheet" type="css/text" href="test.css"/>
<script type="text/javascript" src="test.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
</head>
<body>
<div id="orange"></div>
</body>
</html>

我的CSS(文件名:“test.css”):

#orange {
height: 100px;
width: 100px;
background-color: orange;
border-radius: 5px;
border: 3px solid black;
margin-left: 100px;
margin-top: 100px;
display: none;
}

我的JS(文件名:“test.js”):

$(document).ready(function() {
$('div').fadeIn('slow');
});

控制台显示 jQuery 链接正在 6.52 秒内加载。

我还尝试从我下载的 jQuery 文件进行链接

<script src="C:\jQuery\jquery.js"></script> 

同样惨败......

但是我确实设法以某种方式链接 jQuery UI 并运行“.accordion()”... =/

最佳答案

在这种情况下,您的 test.js 将不会运行,因为您在 jQuery 之前加载它。把它放在 jQuery 之后:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script type="text/javascript" src="test.js"></script>

关于jquery - 在html中链接jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14106864/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com