ajax序列化提交请求

前端之家收集整理的这篇文章主要介绍了ajax序列化提交请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<span style="font-size:18px;">jQuery的serialize()方法通过序列化表单值,创建URL编码文本字符串,我们就可以选择一个或多个表单元素,也可以直接选择form将其序列化,如:

</span><pre name="code" class="html"><form action="">
First name: <input type="text" name="FirstName" value="Bill" /><br />
Last name: <input type="text" name="LastName" value="Gates" /><br />
</form>
$(document).ready(function(){
    console.log($("form").serialize()); // FirstName=Bill&LastName=Gates
});
这样,我们就可以把序列化的值传给ajax()作为url的参数,轻松使用ajax()提交form表单了,而不需要一个一个获取表单中的值然后传给ajax(),举例如下:复制代码
$.ajax({
    type: 'post',url: 'your url',data: $("form").serialize(),success: function(data) {
        // your code
    }
});

复制代码使用$.post()、$.get()和$.getJSON()也是一样的:复制代码
$.post('your url',$("form").serialize(),function(data) {
        // your code
    }
});

$.get('your url',function(data) {
        // your code
    }
});

$.getJSON('your url',function(data) {
        // your code
    }
});


原文链接:https://www.f2er.com/ajax/162632.html

猜你在找的Ajax相关文章