Jquery 验证在 IE7 中不起作用

发布于 2024-11-04 04:03:25 字数 338 浏览 1 评论 0原文

在此网站上工作:http://changemyaddressform.com/ 关于我的 Jquery.Validate 和 .Datepicker。也不在 IE7 中工作,这让我相信我有一些简单的错误......任何人都可以帮助这个菜鸟吗?

在 IE8、FF、Safari 等中运行良好 - 没有什么超级复杂的,只需使用内置的 .validate() 函数。知道为什么它会忽略 IE7 中的所有验证尝试并只是发布到下一页吗?我知道格式已关闭,但目前先考虑功能,再考虑形式。

最好的,

斯科特

Working on this site: http://changemyaddressform.com/ in regards to my Jquery.Validate and .Datepicker. Neither are working in IE7 which leads me to beleive I have something simple wrong...can anyone help this noobie?

Works fine in IE8, FF, Safari, etc - nothing super complicated, just using the built in .validate() function. Any idea why it would be ignoring all validation attempts in IE7 and just posting to the next page? I know formatting is off, but working on function before form at the moment.

Best,

Scott

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叹倦 2024-11-11 04:03:25

嗯,我不知道,但这就是我要尝试的

将按钮类型更改为“按钮”而不是提交
添加一个调用函数的 onclick 事件并在其中添加验证。

当有提交按钮时,我在验证信息时遇到问题,有时无论如何都会提交表单。
同样,您可以在 onclick 函数中添加一个警报,以了解该函数是否被执行。

mmm, I dont know, but this is what i would try

Change the button type to "button" instead of submit
Add an onclick event calling a function and add the validation inside.

I had problems validating information when there is a submit button, some times the form is submitted not matter what.
also this way you can add an Alert inside the onclick function to know if the function is executed or not.

吲‖鸣 2024-11-11 04:03:25

尝试这样:

$(document).ready(function() {

    $("#commentForm").validate();

    $("#datepicker").datepicker({
        changeMonth: true,
        changeYear: true
    });

    $('a.external_link').click(function() {
        window.open(this.href, "WhyEmail?", "width=500,height=200,resizable=no,scrollbars=no,menubar=no,status=no,directories=no,toolbar=no");
        return false;
    });
});​

Try like this:

$(document).ready(function() {

    $("#commentForm").validate();

    $("#datepicker").datepicker({
        changeMonth: true,
        changeYear: true
    });

    $('a.external_link').click(function() {
        window.open(this.href, "WhyEmail?", "width=500,height=200,resizable=no,scrollbars=no,menubar=no,status=no,directories=no,toolbar=no");
        return false;
    });
});​
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文