JQuery .trigger(‘submit’)打破

前端之家收集整理的这篇文章主要介绍了JQuery .trigger(‘submit’)打破前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我发现因为我正在处理的所有表单都有一个提交按钮,该按钮包含’name =“submit”’属性,当我点击应该触发表单提交的链接时,触发器提交就会中断.

有谁知道我怎么能绕过这个.

下面的JQuery代码是我使用的:

$('#login_form :submit').each(
       function()
       {
          var $this = $(this);
          var f = this.form;
          var link = $('<a class="swap_link" href="#">' + $this.val() + '</a>')
             link.click(function()

                {
                   $(f).trigger('submit');
                   return false;
                }
             )
            $this.after(link).css({position:'absolute',top:'-2000px'});
            }
        )

感谢任何帮助.谢谢

你好.看看下面的链接

http://www.mr-scraggy.com/test.html

在此页面上,您可以看到表单的实际效果.在提交按钮中没有名称=“提交”的顶部表单有效.包含name =“submit”的底部表单没有. (当我说工作时,表单没有连接到任何脚本,但你可以看到顶部表单中的提交链接确实’某事’).

另见表格html:

<form id="swaplink" name="login" action="/action/login.PHP" method="post" accept-charset="utf-8" class="clearfix">
<input type="hidden" name="redirecturl" id="redirecturl" value="{$redirecturl}" />
<h2>My Account Login</h2>
<ul id="login_form">
    <li>
        <label for="username">Username:</label>
        <input type="text" name="username" id="username" class="input-text" maxlength="32" />
        </li>
    <li>
    <label for="password">Password:</label>
    <input type="password" name="password" id="password" class="input-text" maxlength="32" />
        </li>
    <li>
    <input type="submit" name="submit" value="Login" />
    </li>
</ul>
    {$Failed_message}
</form>

解决方法

这是因为您已将提交按钮命名为“提交”.因为这已经是表单对象的属性,所以它与提交事件的绑定混淆了.

请参阅jQuery docs中的此注释:

Forms and their child elements should
not use input names or ids that
conflict with properties of a form,
such as submit,length,or method.
Name conflicts can cause confusing
failures.

将提交按钮的名称更改为其他任何内容(例如“form_submit”),它将起作用.

原文链接:https://www.f2er.com/jquery/179201.html

猜你在找的jQuery相关文章