标签:home 提示框 win oca content art csdn sdn 用户
1.提示框点击确定后页面变成空白页面
return Content("<script>alert(‘请先登录‘);</script>");
2.提示框点击确定后页面变成你想要的页面(如实原页面怎会刷新一下)
return Content("<script>alert(‘请先登录‘);window.location.href=‘../home/index‘;</script>");
3.提示框点击确定后页面返回原页面(不刷新,还保留页面用户输入的数据)
return Content("<script>alert(‘请先登录‘);history.go(-1);</script>");
原文地址 http://blog.csdn.net/agonie201218/article/details/45825171
标签:home 提示框 win oca content art csdn sdn 用户
原文地址:https://www.cnblogs.com/fzqm-lwz/p/10997095.html