MVC 重定向 并且弹出提示信息

在控制器中使用Redirect或者使用RedirectToAction重定向视图,需要弹出提示框情况下是加一个中间单独的跳转页,在跳转页里面弹出提示。实例:

 

视图代码:

<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>");
        }

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。