gpt4 book ai didi

javascript - 下拉 Div 不起作用

转载 作者:行者123 更新时间:2023-11-28 04:43:39 26 4
gpt4 key购买 nike

以下代码在单击时不会在 div 中上下移动,它不会执行任何操作。但我正在尝试此处可用的确切代码 http://jsfiddle.net/vNeXq/

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script>
$('#login').click(function(){
$('#loginForm').slideToggle('fast');
});
</script>
</head>
<body>
<div id="loginWrapper">
<a id="login">Login</a>
<div id="loginForm">
<form name="login" method="post">
<input type="text" name="username" placeholder="Username" />
<input type="password" />
<input type="submit" value="Login" />
</form>
</div>
</div>
</body>

CSS 文件

    #loginWrapper
{
width:400px;
background-color:#F0F0F0;
}
#login
{
cursor:pointer;
}
#loginForm
{
display:none;
}

最佳答案

很确定您没有包含 jQuery。要运行的脚本需要 jQuery 库。您可以从 here 下载 jQuery 的副本。或者你可以使用副本 hosted from Google .必须在要运行的代码之前包含 jQuery。

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="loginWrapper">
<a id="login">Login</a>
<div id="loginForm">
<form name="login" method="post">
<input type="text" name="username" placeholder="Username" />
<input type="password" />
<input type="submit" value="Login" />
</form>
</div>
</div>
<!-- INCLUDE JQUERY -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>

$(document).ready(function(){
$('#login').click(function(){
$('#loginForm').slideToggle('fast');
});
}):

</script>
</body>
</html>

关于javascript - 下拉 Div 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41078844/

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