gpt4 book ai didi

javascript - JQuery 不工作,可能是源错误?

转载 作者:太空宇宙 更新时间:2023-11-03 22:41:25 25 4
gpt4 key购买 nike

我正在使用 Notepad++,当我在浏览器中保存并运行此代码时,Jquery 不起作用。

<!DOCTYPE html>
<html>
<head>
<title>Result</title
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<link rel='stylesheet' type='text/css' href='style.css'/>
</head>
<body>
<script>
$(document).ready(function() {
$("div").click(function() {
$("div").fadeout('slow');
});
});
</script>
<div></div>
</script>
</body>
</html>

样式.css

div {
height: 100px;
width: 100px;
background-color: #FA6900;
border-radius: 5px;
}

最佳答案

fadeOut替换fadeout

编辑:正如评论所建议的,您的标题标签也需要关闭。

$(document).ready(function() {
$("div").click(function() {
$("div").fadeOut('slow');
});
});
div {
height: 100px;
width: 100px;
background-color: #FA6900;
border-radius: 5px;
}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<div></div>

如果你只是想让点击的 div 淡出,你也可以用 $(this) 替换内部的 $(div)

$(document).ready(function() {
$("div").click(function() {
$(this).fadeOut('slow');
});
});
div {
height: 100px;
width: 100px;
background-color: #FA6900;
border-radius: 5px;
}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<div></div>

关于javascript - JQuery 不工作,可能是源错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43822964/

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