MVC 重定向 而且彈出提示信息

在控制器中使用Redirect或者使用RedirectToAction重定向視圖,須要彈出提示框狀況下是加一箇中間單獨的跳轉頁,在跳轉頁裏面彈出提示。實例:瀏覽器

 

視圖代碼:url

<a role="button" class="btn green" id="judgeAdd" onclick="showJudge_modal()"
                    data-toggle="modal">預定</a>
<script>
    function showJudge_modal() {
   var url = "/Home/JudgeAppoint";
                $("#judgeAdd").attr("href", encodeURI(url));
}
</script>
   控制器代碼:
public ActionResult Index() { return View(); }

public ActionResult JudgeAppoint() { return View(); }
   public ActionResult AddJudgeAppoint() { return Redirect("rjudge"); } 
 public ActionResult rjudge() { return Content("<script>alert('12121');location.href='/Home/JudgeAppoint'</script>"); }

不過這樣處理還有個問題,就是在IE和火狐瀏覽器上老是先彈出提示框,再呈現試圖,體驗很差;哪位知道更好的處理方式能否告知,灰常感謝spa

相關文章
相關標籤/搜索