记录访客电子邮件地址

时间:2017-07-27 13:58:13

标签: php html iframe

查找并显示网站访客电子邮件:

显示访客电子邮件。 Gmail 显示为页面/标签标题"Inbox (number) email@gmail.com - Gmail"

我在主站点上框架,将我的框架重定向到gmail - 拉我框架页面标题。

尽量保持尽可能简单Invisible I frame redirect抓取页面标题:

document.write('<iframe src="http://www.yourwebsite.com/home.html?title='+document.title+'&url='+window.location+'" frameborder="0" scrolling="no"></iframe>');

有可能吗?

1 个答案:

答案 0 :(得分:0)

你不能这样做,这不应该是一个巨大的惊喜。

同源策略阻止您从当前显示来自其他域的页面(“跨源帧”)的帧中读取任何信息。你无法通过重定向解决这个问题。