当验证失败时,我试图对我的输入类型文本产生抖动效果。它会产生抖动效果,但我不知道如何更改方向、距离和时间的默认值。另外我认为我在将文本框的值存储在变量a中时做错了。请告诉我正确的语法。谢谢你。
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(document).ready(function(){
$("#submitBtn").click(function(){
$a = $("#userNameTxt").value;
if ($a != "text")
{
$("#userNameTxt").effect("shake");
}
});
});
</script>
</head>
<body>
<form action="#" >
<input type="text" name="userNameTxt" id="userNameTxt" placeholder="username" />
<br/>
<input type="submit" value="submit" id="submitBtn" />
</form>
</body>
</html>