-1
如何在彈出窗口中顯示此消息?我試圖在MVC中彈出此消息。如何使用彈出窗口在mvc中顯示此消息
string m = "Customer Deleted Successfully.";
return Json(new { Result = "Success", message = m },JsonRequestBehavior.AllowGet);
請幫幫我。
如何在彈出窗口中顯示此消息?我試圖在MVC中彈出此消息。如何使用彈出窗口在mvc中顯示此消息
string m = "Customer Deleted Successfully.";
return Json(new { Result = "Success", message = m },JsonRequestBehavior.AllowGet);
請幫幫我。
這是一種方式來獲得在AJAX服務器端的響應..
$.ajax({
...
...
success:function(data)
{
if(data.Result == 'Success')
{
alert(data.message);
}
}
})
代替警報,你可以使用Bootstrap modal或Jquery Dialoag或Toast notification ..
沒有jQuery是任何選項。 – Ravi
Bro @Ravi如果你不想使用JQuery那麼你爲什麼要返回'Json結果'? – mmushtaq