preventDefault函数无法使用Ajax / Form Handling

时间:2014-11-02 16:49:50

标签: javascript php jquery ajax preventdefault

以下表单我一直试图通过Ajax函数而不是通过action / PHP。

    <section class="registration">
    <form name="userRegistration" method="post" id="userregister" action="install.php">

        <label for="username">Username</label>
        <input type="text" name="username" id="username" value="admin">



        <label for="username">Author Name</label>
        <input type="text" name="authname" id="authname" placeholder="Example: John Doe">


        <label for="password">Password</label>
        <input type="password" name="pass" id="pass" value="">    



        <label for="sitetitle">Site Title</label>
        <input type="text" name="sitetitle" id="sitetitle" >


        <label for="sitedesc">Site Description</label>
        <input type="text" name="sitedesc" id="sitedesc" >



        <label for="server">Server</label>
        <input type="text" name="server" id="server" placeholder="Example: localhost">


        <label for="database">Database</label>
        <input type="text" name="database" id="database" >   



        <label for="dbun">DB Username</label>
        <input type="text" name="dbun" id="dbun" >



        <label for="dbpw">DB Password</label>
        <input type="password" name="dbpw" id="dbpw" >

        <input type="submit" />
    </form>

以下是我的ajax代码。

$(document).on('submit', '#userregister form', function(e) {
 $.ajax({
    url: $(this).attr('action'),
    type: $(this).attr('method'),
    data: $(this).serialize(),
    success: function(html) {
    alert('ok');
    }
});
e.preventDefault();

});

但是不是阻止默认,表单似乎完全忽略了所有内容并将其传递给了操作,我不太清楚为什么。实际的install.php函数工作正常,但我只是难以理解它为什么不通过Ajax。

1 个答案:

答案 0 :(得分:0)

preventDefault停止了事件冒泡,但取消了自我事件。您必须从函数返回false以取消默认行为(打开表单网址):

$(document).on("submit", "#userregister form", function (e) {
    $.ajax({
        url: $(this).attr('action'),
        type: $(this).attr('method'),
        data: $(this).serialize(),
        success: function(html) {
            alert('ok');
        }
    });
    e.preventDefault();
    return false;
});

更好的实践是处理sumbit按钮click,但是形成事件“submit”。