form提交之后window.location.href 不起作用(高手进)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form提交之后window.location.href 不起作用(高手进)相关的知识,希望对你有一定的参考价值。

采取MVC形式控制器:在ViewResult的方法里写了持久化进数据库的代码,保存成功后赋值ViewData["SaveOK"] = true;页面:<%
if (ViewData["SaveOK"] != null && (bool)ViewData["SaveOK"])

string js = @"<script>
alert('[%保存成功!]');
window.location.href = 'SendEmailList';</script>";
Response.Write(js);
%> 该跳转不起作用,查看源文件中,window.location.href = 'SendEmailList';这句话不存在

参考技术A <%
if (ViewData["SaveOK"] != null && (bool)ViewData["SaveOK"])

string js = @"<script>alert('[%保存成功!]');window.location.href = 'SendEmailList';</script>";
Response.Write(js);
%> 说明:JS代码字符串作为一行显示!
参考技术B alert('[%保存成功!]');这句有出来吗

以上是关于form提交之后window.location.href 不起作用(高手进)的主要内容,如果未能解决你的问题,请参考以下文章

form表单传递数组到后台之后,后台怎么提取这个数组里面的值进行判断?

为啥使用了form表单之后页面会跳转,并且页面一片空白

php form提交账户密码 怎么写验证

问下,form表单提交一个excel文件之后,后台返回的数据怎么在html中获得?

html的form提交之后,是如何进行跳转的?整个过程浏览器是如何实现的?

fastadmin: layer.open 弹出层如何在表单提交之后自动关闭?