.net MVC中前台做跳转页面,改变的只是action,
这是为什么啊。
top.window.location.href = "www.baidu.com";
你要跳转到一个外部的地址,得使用绝对路径,“http://www.baidu.com”
百度:html 相对路径 绝对路径
相对路径 绝对路径这种不是在引用文件的时候需要注意的?跳转的时候为什么只是会改变Action部分呢?
top.window.location.href = "../../../www.baidu.com";
做了返回上一级目录处理,但是url变成了http://localhost:13030/www.baidu.com
localhost本地服务器去除不掉
在你地址前面加上http://
就可以跳转到外部地址了