在Firefox中提交的jQuery表单

问题描述 投票:4回答:5

[请帮助我解决一个问题。我有此代码,用于通过锚提交表单。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            $("#btnLogout").click(function() {
                $('#frm').submit();
                return false;
            });
        });
    </script>
</head>
<body>
    <form id="frm" action="/" method="post">
        <div>
            <p>
                <label for="txtLogin">Login:</label>
                <input name="txtLogin" />
            </p>
        <div>
           <a id="btnLogout" href="javascript:void(0)">выход</a>  
        </div>
        </div>
    </form>
</body>
</html>

它在IE7,8,Opera和Google Chrome上都可以正常运行,但在FireFox 3.5上不起作用。我不明白为什么它不起作用?

javascript jquery submit
5个回答
-4
投票

这可能是与jQuery直接无关的FF问题。尝试像这样将文件名放在action属性中:

<form id="frm" action="/index.html" method="post">

只需确保将index.html更改为默认文档即可。


18
投票

基于此处相同问题的答案:Jquery Form.submit() on Chrome works but not in Firefox

在提交之前将表单对象添加到DOM:

$("#actionform").appendTo("body").submit();

3
投票

[According to this,通过Java脚本添加表单后,在Firefox下无法使用jQuery手动提交]

该解决方案包括克隆表格并提交:

$('#myform').on('submit', function(e) {
   e.preventDefault();
   if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1) {
     $(this).clone().appendTo("body").submit(); // FF only
   } else {
     this.submit(); // works under IE and Chrome, but not FF  
   }

});

0
投票

这对我有用:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"></script>

    <script type="text/javascript">
  $(document).ready(function() {
    $("#btnLogout").click(function() {
      $("#actionform").submit();
         return false;
    });
  });
  </script>

</head>

<body>

<form id="actionform" action="something.html" method="post" name="forma">

        <label for="txtLogin">Login:</label>
        <input name="txtLogin" />
     <a href="#" id="btnLogout">Uno mas</a>  

</form>

</body>
</html>

-2
投票

[尝试在表单中包含一个提交按钮。即使它是隐藏的。

<input type="submit" style="display:none;" />
© www.soinside.com 2019 - 2024. All rights reserved.