我正在尝试在页面加载时在页面上有一个元素。我只想简单地摇动(大约2秒钟),比如某些网站上的用户名和密码不正确。
这是我尝试过的。
<div id="login_wrapper">
<div id="login_header"><div id="header_title">Enter your login details below</div> </div>
<div id="login_input_wrapper">
<div id="username_wrapper">
<div id="username_label"><h3>Username</h3></div><div id="username_input"><input type="text" class="text_field" id="login_username" name="login_username" placeholder="username123"></div>
</div>
<div id="username_wrapper">
<div id="username_label"><h3>Password</h3></div><div id="username_input"><input type="password" class="text_field" id="login_password" name="login_password" placeholder="itsasecret"></div>
</div>
<div id="" class=""> <button class="login_button" value="submit"> login </div>
</div>
</div>
</div>
<script type="text/javascript">
$( document ).ready(function() {
$( "#login_wrapper" ).effect( "shake" );
});
</script>
我把它放在文档正文末尾之前,但没有得到回应。我是jQuery的新手,有人可以帮我看看我的代码有什么问题吗?
答案 0 :(得分:2)
.effect()
是jQueryUI的一部分。你必须加载jQuery和jQueryUI(按此顺序)才能使它工作。
答案 1 :(得分:0)
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
</head>
<body>
<div id="login_wrapper">Hello</div>
<script>
$(document).ready(function () {
$( "#login_wrapper" ).effect( "shake" );
});
</script>
</body>
</html>
&#13;
确保加载以下内容。只需检查您的控制台是否有错误
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>