JQuery.validate remote怎么没用啊?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery.validate remote怎么没用啊?相关的知识,希望对你有一定的参考价值。

根本就不进入验证的Servlet,我在servlet开头写了个输出语句试试,结果根本不显示,怎么破?

参考技术A 试试用火狐、谷歌、360监视请求的地址,和返回的内容,首先得确保发了ajax到指定地址了 参考技术B 用chrome按ctrl+shift+j打开控制台看看JS什么错误,发上来。我可以确切的说,你的ajax失败了。

jQuery的Validate插件

http://www.runoob.com/jquery/jquery-plugin-validate.html

 

项目中的::

   $(function () {
        $(‘#createDepartment‘).validator({// jsvalidator框架
            rules: {
                remote: function (element) {//远程异步加载
                    return $.ajax({
                        url: /*[[@{/portal/human/department/valid-department-name.act}]]*/ "#",
                        type: ‘post‘,
                        data: {
                            "departmentname": function () {
                                return $(‘#name‘).val();
                            }
                        },
                        dataType: ‘json‘
                    });
                }
            },
            fields: {
                "superior.id": "required;superior.id;",
                "name": "required;name;remote;",
                "phone": "required;phone;",
                "address": "required;address;",
                "type": "required;type;"
            }
        });
    });

 

以上是关于JQuery.validate remote怎么没用啊?的主要内容,如果未能解决你的问题,请参考以下文章

Jquery validate remote方式是否有问题

jquery.validate remote验证另一种写法

jquery.validate:多个远程规则

jquery.validate.js的remote用法

jquery.validate 远程验证remote使用详解

jQuery Validate Remote - 检查电子邮件是不是已经存在