jQuery .submit() 不会在 Firefox 中发送输入提交

发布于 2024-11-30 04:32:20 字数 496 浏览 0 评论 0原文

我有一个小的 jQuery (1.6.2) 脚本,它将输入提交值更改为“发送...”,并防止它在没有选定图像的情况下工作。

$('form#upload').submit(function(event)
{
  event.preventDefault();

  var image = $('input[name="image"]');
  var upload = $('input[name="upload"]');

  if (image.val())
  {
    upload.val('Sending...');
    this.submit();
  }
});

image 是输入文件,upload 是输入提交。它在 Chrome 中工作正常,但 Firefox (5.0) 不会在 POST 中发送输入提交,仅发送图像,这会导致我的服务器端脚本失败。我可以解决这个问题,但我想知道我是否可以解决这个问题,但我似乎找不到任何东西。

I have a little jQuery (1.6.2) script that changes the input submit value to "Sending..." and prevents it from working without a selected image.

$('form#upload').submit(function(event)
{
  event.preventDefault();

  var image = $('input[name="image"]');
  var upload = $('input[name="upload"]');

  if (image.val())
  {
    upload.val('Sending...');
    this.submit();
  }
});

image is an input file, upload is the input submit. It works fine in Chrome, but Firefox (5.0) does not send the input submit in the POST, only the image, which causes my server side script to fail. I could work around that, but I'd like to know if I can fix that and I can't seem to find anything on it.

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

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

发布评论

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

评论(1

北风几吹夏 2024-12-07 04:32:20

只需删除无条件的 event.preventDefault(); 并仅在提交表单时调用它。

$('form#upload').submit(function(event)
{

  var image = $('input[name="image"]');
  var upload = $('input[name="upload"]');

  if (image.val()) {
    upload.val('Sending...');
  }
  else {
    event.preventDefault();
  }
});

Simply remove the unconditional event.preventDefault(); and only call it if the form should not be submitted.

$('form#upload').submit(function(event)
{

  var image = $('input[name="image"]');
  var upload = $('input[name="upload"]');

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