我正在使用ASP.NET MVC 4,那麼在點擊確定返回索引頁後,如何重定向消息框?點擊確定jQuery警告消息框重定向
這裏是我的代碼
<script type="text/javascript">
$(function errMsgBox() {
alert("Please select the Correct Activity and Task");
@Html.ActionLink("Back to List", "/Index")
});
</script>
'window.location.href ='whatever.aspx'' – adeneo
ASPX是錯誤的。他沒有使用asp.net他使用ASP.net MVC ..它應該是window.location =「controller/action」ex。 「/ Home/Index」 –