我在我的 .js 文件中放置了这个 jquery 函数......只要我的页面被加载,它就可以工作......但是当我将它更改为作为部分视图返回时......这个警报将不再起作用......它怎么会再次工作?
$(document).ready(function () {
var msg = '@ViewBag.Message';
if (msg == '1')
alert("New Time Shift has been saved.");
});
在我的控制器动作中......
if (Request.IsAjaxRequest())
return PartialView("_RecordList", userRecord); //alert wont work here...
return View(userRecord); //this will return the whole view thus the alert works here