jQuery – 异步发送表单

前端之家收集整理的这篇文章主要介绍了jQuery – 异步发送表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个表格,如:
<form action='???' method='post' name='contact'>
        <input type="text" class="inputContact" name="mittente" />
        <textarea class="textContact" name="smex"></textarea>
        <input type="submit" value="Send" />
    </div>
</form>

我想异步发送这些数据,使jQuery函数$ .ajax。

编辑:与解决方案:

<form name='contactForm'>
    <input type="text" class="inputContact" name="mittente" />
    <textarea class="textContact" name="smex"></textarea>
    <input type="submit" value="Send" />
</form> 

<script type="text/javascript">
$(document).ready(function() {
    $('form[name=contactForm]').submit(function(e){
        e.preventDefault();
        $.ajax({
            type: 'POST',cache: false,url: './ajax/header_ajax.PHP',data: 'id=header_contact_send&'+$(this).serialize(),success: function(msg) {
                $("#BoxContentId").html(msg);
            }
        });
    });     
});         
</script>

解决方法

$('form[name=contact]').submit(function(){

    // Maybe show a loading indicator...

    $.post($(this).attr('action'),$(this).serialize(),function(res){
        // Do something with the response `res`
        console.log(res);
        // Don't forget to hide the loading indicator!
    });

    return false; // prevent default action

});

看到:

> jQuery docs: post
> jQuery docs: serialize

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

猜你在找的jQuery相关文章