gpt4 book ai didi

javascript - 为什么当我打开浏览器时我的 jQuery 无法工作/显示?

转载 作者:行者123 更新时间:2023-12-03 08:11:50 27 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
$(document).ready(function() {
$('#top_message').slideDown(300);
});
</script>
<meta charset="utf-8">
<title>jQuery</title>
<style type="text/css">
#top_message {
height: 50px;
width: 75%;
background-color: orange;
}
</style>
</head>
<body>
<div id="top_message">
We can see you're not logged in. Do you want to <a href="#">sign up</a>?
</div>
</body>
</html>

我在浏览器上运行代码,但它没有像预期的那样向下滑动,我做错了什么?谢谢。

最佳答案

因为您也尝试使用相同的脚本来加载 jQuery 和您自己的代码。

使用两个不同的脚本。

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('#top_message').slideDown(300);
});
</script>

关于javascript - 为什么当我打开浏览器时我的 jQuery 无法工作/显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34107147/

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