被遗忘的 jQuery

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<script src="jquery-1.10.1.min.js"></script>
<script>



$(function(){

console.log($('form').serialize()); //string : a=1&b=2&c=3

console.log($('form').serializeArray() );

/*[
{ name : 'a' , value : '1' },
{ name : 'b' , value : '2' },
{ name : 'c' , value : '3' }
]*/

});

</script>
</head>

<body>
<form>
<input type="text" name="a" value="1">
<input type="text" name="b" value="2">
<input type="text" name="c" value="3">
</form>

</body>
</html>
posted @ 2017-06-30 00:41  likwin  阅读(147)  评论(0编辑  收藏  举报