common.js:
$(function(){
$('#submit').click(function(){
$.ajax({
type: "POST",
url: "do.php",
data: $('#myform').serialize(),
success: function(msg){
var obj = jQuery.parseJSON(msg);
alert(obj.data1+obj.data2+obj.data3+obj.data4+obj.data5+obj.data6+obj.data7);
}
});
})
})
do.php:
echo json_encode($_POST);
?>
index.html:
test jquery parse jsonform{ width:400px;background:#d4d4d4;margin:100px auto 0;}
form input[type='text']{ width:300px; }
form div{margin-bottom:20px;}
data1:
data2:
data3:
data4:
data5:
data6:
data7: