我使用MVC 4,MVC jQuery的崗位表單數據和分配形式的數據
我要發佈jQuery的表單數據和設置JSON數據形成。
function DoAjaxPostAndMore(btnClicked) {
var $form = $(btnClicked).parents('form');
$.ajax({
type: "POST",
url: $form.attr('action'),
data: $form.serialize(),
accept: 'application/json',
error: function (xhr, status, error) {
},
success: function (response) {
}
});
return false;// if it's a link to prevent post}
你有什麼問題嗎? – undefined 2013-03-15 08:43:57
@OP好,現在你想從這裏得到什麼解決方案? – Jai 2013-03-15 08:47:49