3

当验证失败时,我试图对我的输入类型文本产生抖动效果。它会产生抖动效果,但我不知道如何更改方向、距离和时间的默认值。另外我认为我在将文本框的值存储在变量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>
4

2 回答 2

3

像这些选项的东西??

 $("#button").click(function(){
         $(".target").effect( "shake", 
          {times:4}, 1000 );
      });

这是充分解释的抖动效果

于 2013-07-03T06:44:11.270 回答
0

This should do it.

$("#userNameTxt").effect('shake', { 
times: 10,
duration: 1000,
direction: 'left' // 'right' for right
});
于 2013-07-03T06:45:18.307 回答