嘗試使用"$('#myModal').modal('hide');"
先隱藏模型,然後將數據追加
//custom lib function
$.fn.serializeObject = function()
{
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
//uses
$(document).ready(function(){
$("#Reload").click(function(){
$('#myModal').modal('hide');
var jsonOfForm = $('formSelector').serializeObject()
$("#result").append("result reloaded successfully");
});
});
不能在這裏完全理解你的問題。如果你想添加一些東西到數據庫中,那你試過的代碼是什麼? – 2014-10-07 04:47:10
是什麼問題? – divakar 2014-10-07 04:47:20
您應該使用表單動作或ajax將數據發送到php頁面並在存儲數據後將其存儲在數據庫中更新div。 – divakar 2014-10-07 04:48:22