gpt4 book ai didi

javascript - jQuery 中的问题?

转载 作者:行者123 更新时间:2023-11-30 10:18:58 25 4
gpt4 key购买 nike

我最近尝试将交互式 div 标签添加到我的 HTML 网站。

为此,我使用了以下 jQuery 代码:

$(document).ready(function() {

$('div').mouseEnter() {
$(this).fadeTo('fast', 0.5);
$(this).animate ({
height:'+=10px'
});
});

$('div').mouseLeave() {
$(this).fadeTo('fast', 1.0);
$(this).animate({
height:'-=10px'
});
});

});

我的网站已加载,但 div 未按要求运行。

请问我的代码是否有错误?

这是html部分:

<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<title>Dempsey Home</title>
</head>

<body bgcolor=black>
<link type="text/css" rel="stylesheet" href="stylesheet1.css"/>
<center>
<font>
<a name="TOP">
<h1>Kavanaugh Dempsey</h1>
<hr>
<table>
<tr>
<td>
<div onclick="location.href='index.html'">
<br><span><b>Home</b></span></a>
</div>
</td>
</a>

<td>
<div onclick="location.href='top5.html'">
<br><span><b>Top Five</b></span>
</div>
</td>

<td>
<div onclick="location.href='movies.html'">
<br><span><b>Movies</b></span>
</div>
</td>

<td>
<div onclick="location.href='movies.html'">
<br><span><b>Activities</b></span>
</div>
</td>
</tr>
</table>
</font>
</center>
</body>
</html>

这是 CSS:

div {
height:70px;
width:120px;
border-radius:10px;
color:#00FFFF;
background-color:#00FFFF;
border-color: #000000;
text-align: center;
opacity: 1;
}
span {
color: #000000;
text-decoration: none;
}
h1 {
font-family:Comic Sans MS;
}
font {
color:cyan;
font-family:Comic Sans MS;
}

最佳答案

这是 correct fiddle :

JS:

$(document).ready(function() {
//`mouseEnter` is `mouseenter` and `mouseLeave` is `mouseleave`
$('div').mouseenter( function () { // some wrong was syntax here
$(this).fadeTo('fast', 0.5);
$(this).animate ({
height:'+=10px'
});
});
$('div').mouseleave(function () { // some wrong was syntax here
$(this).fadeTo('fast', 1.0);
$(this).animate({
height:'-=10px'
});
});
});

希望对您有所帮助!

关于javascript - jQuery 中的问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22278549/

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