某些 URL 的 jQuery 验证错误

发布于 2025-01-05 04:22:03 字数 882 浏览 0 评论 0原文

我一直在寻找这个问题的答案,想知道是否有人遇到过同样的问题。

jQuery.validation 插件正常工作正常,只是有一些 URL 无法正确验证,我正在努力找出原因(或有效的解决方法)。

普通 URL 可以正常工作,例如 http://www.play.com,但以下 URL 始终无法正常工作证实:

http://www.play.com/DVD/Blu-ray/4-/21404340/Transformers-3-Dark-Of-The-Moon-3D/Product.html?searchstring =&searchtype=allproducts&searchsource=2&searchfilters=ae212{644651}%2bc{600}%2b&urlrefer=search

我猜是因为 { } 字符。

我正在使用通用验证插件用法:

$("#myform").validate({
  rules: {
    field: {
      required: true,
      url: true
    }
  }
});

任何对此修复的见解都将非常感激。

I've been looking for an answer for this for a while now and wondering if anyone has had the same issue.

The jQuery.validation plugin works fine, normally, just there's a few URLs that it doesn't validate properly and I'm seriously struggling to figure out why (or a valid work-around).

Normal URLs work fine, such as http://www.play.com, but the following URL will always fail to validate:

http://www.play.com/DVD/Blu-ray/4-/21404340/Transformers-3-Dark-Of-The-Moon-3D/Product.html?searchstring=&searchtype=allproducts&searchsource=2&searchfilters=ae212{644651}%2bc{600}%2b&urlrefer=search

I'm guessing due to the { } characters.

I'm using the generic validation plugin usage:

$("#myform").validate({
  rules: {
    field: {
      required: true,
      url: true
    }
  }
});

Any insight into a fix for this would be very appreciated.

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

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

发布评论

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

评论(1

妖妓 2025-01-12 04:22:03

是的,这些字符无效。您可能希望采用的一个选项是URL 输入上的 on Change 事件,用 URI 编码值替换当前值。

$('.url-field').change(function() { $(this).val(encodeURI($(this).val())); });

Yes, those characters are invalid. One option you may wish to adopt is have an on change event on your URL input that replaces the current value with the URI encoded value.

$('.url-field').change(function() { $(this).val(encodeURI($(this).val())); });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文