我可以阅读重定向位置吗?

时间:2015-06-19 05:33:25

标签: javascript html redirect iframe

我有以下网站重定向到特定资源:

select * from tablename where employee_id in ( select t1.employee_id from tablename t1 left outer join tablename t2 on t1.employee_id = t2.t2.employee_id and t1.status = t2.status and t1.email=t2.email and t1.partition=1 and t2.partition=2 where t2.employeeid is null ) - > foo.com

foo.com没有X帧头,因此可以iframed abc.com有X-frame标题,因此它不能被iframed。

我只是想不惜一切代价得到响应位置标题(也就是重定向的位置),这是由此网址引起的。

abc.com

响应包含重定向的位置标题。

是否有任何方法可以查看uts重定向的位置?

尝试

我尝试使用foo.com/redirect.com 位置阅读iframe,但它只返回foo.com(即初始网址)而不是this.src

我尝试阅读Ch​​rome控制台但失败了。

我试过

abc.com

还有其他方式吗?

由于

这就是我想要的:

我添加了这个html标签

var ifrm = $('iframe');
var iurl = ifrm.window.location;

现在始终<iframe src="http://foo.com"></iframe> 将重定向到foo.com。那么我的iframe如何知道

  

哦! foo.com已将我重定向到abc.com!,现在javascript,提醒用户iframe正在重定向!

基本上:我如何知道iframe重定向到哪里?

0 个答案:

没有答案