jquery函数.submit()无法在IE中发布数据
我有一个像这样的表单,
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE 中有一个已知的错误,当内部没有提交元素时,该错误会阻止表单被提交。尝试添加
到您的标记中,看看它是否有效。
There is a known bug in IE that prevents a form from being submitted when there is no submit element inside. Try adding
to your markup and see if it works.