我有一个包含6个标签页(Jquery标签)的页面,每个标签上都有一个表单。我看起来像一个简单的问题,但我正在打破它的头脑。
我想更新表单submit
之后的div(tab),submit
之后当然还有一些操作(数据库更新)。
<form name="prijzen_huidige_jaar" method="post" action="<?php $_SERVER["PHP_SELF"] ?>">
答案 0 :(得分:1)
你可以从这样的事情开始:
$(document).ready(function(){
$('.form-to-submit').submit(function(){ // a class to give all your forms
content = $(this).serialize();
$.post('/path/to/script.php', content, function(data){
if(data){
// The script returned something in the "data" variable. Do things like:
$('container').replaceWith(data);
}
});
})
});
答案 1 :(得分:0)
您是通过ajax获得更改的?
如果是......您可以使用成功事件进行更改。
$.post(Url , function(data){
}).success(function(data){
//Here you could do another post call to get your new data
$.post(refreshUrl,function(dataRefresh){
//Your refresh here
});
});