jQuery .submit() 不会在 Firefox 中发送输入提交
我有一个小的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需删除无条件的
event.preventDefault();
并仅在不提交表单时调用它。Simply remove the unconditional
event.preventDefault();
and only call it if the form should not be submitted.