jquery函数.submit()无法在IE中发布数据

发布于 2024-12-08 04:39:04 字数 528 浏览 2 评论 0原文

我有一个像这样的表单,

<li id="li-298056">
<form id="form-298056" method="POST" action="tab_board.php">
<div class="titre_4">CAMPAGNE ANTIGONE</div>
......
<input type="hidden" value="298056" name="lot_id">
</form>
</li>

我使用 .submit() 提交表单,

$('#li-298056').click(function(){
    $('#form-298056').submit();
});

这效果很好 ffx。在 IE 浏览器中,我无法获取操作页面中的帖子值。它显示错误“语法错误”。 但是如果我启动 IE 的开发工具,并开始调试 javascript 或选择 li 块,那么它就可以工作。 怎么解决这个问题呢?

I have a form like this

<li id="li-298056">
<form id="form-298056" method="POST" action="tab_board.php">
<div class="titre_4">CAMPAGNE ANTIGONE</div>
......
<input type="hidden" value="298056" name="lot_id">
</form>
</li>

I use the .submit() to submit the the form

$('#li-298056').click(function(){
    $('#form-298056').submit();
});

This works well ffx. In the IE browser i cannot get the post values in the action page. It display an error 'syntext errors'.
But if i start the developpment tool of IE, and start to debug the javascript or select the li block then it works.
How to solve this?

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

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

发布评论

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

评论(1

我要还你自由 2024-12-15 04:39:04

IE 中有一个已知的错误,当内部没有提交元素时,该错误会阻止表单被提交。尝试添加

<input type="submit" value="submit" style="display:none" />

到您的标记中,看看它是否有效。

There is a known bug in IE that prevents a form from being submitted when there is no submit element inside. Try adding

<input type="submit" value="submit" style="display:none" />

to your markup and see if it works.

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