2014-07-08 70 views
0

我通過引導程序模式中的ajax發送<form>數據。如何使模式窗口打開,直到返回值,然後顯示通知<div>在ajax提交後維護引導程序模式打開

通知div將顯示錶單驗證,並手動關閉用戶需要單擊關閉按鈕或模態窗口以外的模式。

下面是我的代碼,簡化版本:

$.post(url, { 
    data:data } 
    ,function(html){ 
     if(html==1){ 
      //show <div class="A"> here 
     } 
     else{ 
      //show <div class="B"> here 
     } 
}); 
+0

讓我看看你

? –

+0

模式是否自行關閉?它不應該。如果你只是想顯示模式,那就是'$(「#myModal」).model(「show」);'。要顯示'div',你可以使用'$(「.A」).show();'。 –

回答

1

使用$就

$.ajax({ 
    type: 'POST', 
    url: url, 
    data: data, 
    beforeSend: function() { 
     // Write code for showing the modal here 
     // You can also set a loading image here 
    }, 
    success: function(html) { 
     // code for success notification 
    }, 
    error: function(xhr) { // if error occured 
     // code for showing error 
    } 
});