我是靠谱客的博主 完美羊,最近开发中收集的这篇文章主要介绍jQuery ui插件的使用方法代码实例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

复制代码 代码如下:

       <script src="Jquery1.7.js" type="text/javascript"></script>
    <script src="jquery.validate.js" type="text/javascript"></script>
    <script src="messages_cn.js" type="text/javascript"></script>

    <script type="text/javascript">

        $(function () {

            $('#form1').validate({
                rules: {
                    txtUser: { required: true, minlength: 6 },
                    txtPassword: { required: true, minlength: 6 },
                    txtConfirm: { required: true, minlength: 6, equalTo: "#password" },
                    txtHomePage: { required: true, url: true },
                    txtBirthday: { required: true, dateISO: true },
                    txtXueYa: { required: true, digits: true },
                    txtEmail: { required: true, email: true }
                },
                errorshow: function (error, element) {
                    error.appendTo(element.siblings('span'));
                }
            })
        })

    </script>

</head>
<body>
    <form action="" id="form1">
         <table>
             <tr>
                <td>用户名:</td>
                <td><input name="txtUser" type="text" /><span>*</span> </td>
              </tr>

              <tr>
                 <td>密码:</td>
                  <td><input name="txtPassword" id="password" type="text" /><span>*</span> </td>
              </tr>

              <tr>
                 <td>确认密码:</td>
                  <td><input name="txtConfirm" type="text" /><span>*</span> </td>
              </tr>

              <tr>
                   <td>主页:</td>
                    <td><input name="txtHomePage" type="text" /><span>*</span> </td>
              </tr>

              <tr>
                <td>生日:</td>
                 <td><input name="txtBirthday" type="text" /><span>*</span> </td>
              </tr>

              <tr>
                 <td>血压:</td>
                  <td><input name="txtXueYa" type="text" /><span>*</span> </td>
              </tr>

              <tr>
                <td>邮箱:</td>
                <td><input name="txtEmail" type="text" /><span>*</span> </td>
              </tr>
         </table>

    </form>
</body>
</html>  

最后

以上就是完美羊为你收集整理的jQuery ui插件的使用方法代码实例的全部内容,希望文章能够帮你解决jQuery ui插件的使用方法代码实例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(119)

评论列表共有 0 条评论

立即
投稿
返回
顶部