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';这句话不存在
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表单提交一个excel文件之后,后台返回的数据怎么在html中获得?