文件名称:json2.js javascript
文件大小:17KB
文件格式:JS
更新时间:2013-12-09 03:57:10
json js 2
json2.js 将对象JSON化: JSON.stringify(value, [replacer], [space]) 例子: $(document).ready(function () { $("#update").click(function () { var employee = { EmployeeName: $("#EmployeeName").val(), Address: $("#Address").val() }; $.ajax({ url:"/Employee/Edit", type: "POST", data:JSON.stringify(employee), dataType:"json", contentType:"application/json;charset=utf-8", success:function(){$("#message").html("Employee Saved").fadeIn();}, error:function(){$("#message").html("Error Occurred").fadeIn();} }); return false; }); });//end ready