iPhone上的跨域iframe localStorage

时间:2017-11-26 19:53:37

标签: javascript iphone iframe local-storage cross-domain

我正在制定匹配点击和销售的解决方案。

用户点击域a.com上的链接,并将重定向到域track.domain.com/click.php

-> here in click.php I am storing a variable with localStorage.setItem('test', 1);
-> redirect the user to b.com

在感谢页面的b.com上,有一个从track.domain.com/track.js加载的javascript,例如:

-> I am adding an iframe to the body of b.com/thankyou.php with track.domain.com/tracking.php
-> in tracking.php I am getting the value from the local storage localStorage.getItem('test').

在除iPhone以外的所有浏览器和手机上,此解决方案都能正常运行不知何故,iPhone正在覆盖框架的原点,我无法检查localStorage的密钥。

有没有人有这方面的好解决方案?

0 个答案:

没有答案