因需要,需要跨域cookie支持,IE6\7通过声明方式解决了,但是在safari上遇到了问题。经查测试,可以这样处理
a.com/a.html 代码
<iframe id="iframeB" style="height: 100px;" name="iframeB"
src="http://b.com/b.php" frameborder="0" scrolling="no" width="100%"
height="auto"></iframe>
b.com/b.php
//判断是否为Safari浏览器,以及cookie是否存在$vid为需设置为cookie的变量
if(strpos($_SERVER["HTTP_USER_AGENT"],'Safari') and !$_COOKIE["userid"]) {
echo "<script language='javascript'>";
echo "top.location.href='http://b.com/b.php?tbid=".$vid."';";
//完全跳转出去iframe,到b.com/b.php上
echo "</script>";
die;
}
//接收操作
if($_GET["tbid"]){
setcookie("userid",$_GET["tbid"],time()+60*60*5,"/","");//产生cookie
echo "<script language='javascript'>";
echo "top.location.href='http://a.com/a.html';";//跳转回到a.com/a.html
echo "</script>";
die;
}
此方法最简单,不过需要额外的地址跳转,鉴于Safari的用户很少,虽然体验不完美,但总比抛弃他们好的多。
-----------------------------------------------------------------------------------------------------------------
另外转载一下正常的解决方法:
场景:
在 xx.com/y.html 代码为:
w.htm 需要根据 authKey 写入 cookie ,授权 y.html 嵌入 zz.com 站点的其他页面(例如即时重定向到另一个页面显示写入的 cookie )。
w.htm 内容为:
- if (request.getParameter("authKey") != null) {
- response.addCookie(new Cookie("logined", "ok"));
- response.sendRedirect(request.getContextPath() + request.getServletPath());
- } else {
- Cookie[] cs = request.getCookies();
- if (cs != null) {
- for (Cookie c : cs) {
- if (c.getName().equals("logined")) {
- response.getWriter().println("logined : " + c.getValue());
- }
- }
- }
- }
问题 :
但是在 ie6,7 以及 safari 中发现 cookie 并没有被写入,重定向的读页面读不出刚刚设置的cookie。
解决:
涉及到 p3p 简洁策略 的设置以及在 safari 下的特殊处理:
ie6,7
需要在 w.htm 的返回响应中加入 p3p 简明策略响应头:
- // ie need this
- response.addHeader("P3P", "CP=\"CAO PSA OUR\"");
允许在嵌入自己情况下写入cookie。
safari
不能直接通过 iframe.src 来请求第三方页面,需要通过表单 post 提交来允许第三方页面 cookie 写入 :
- S.use("ua,dom", function(S, UA, DOM) {
- var ok = S.get("#ok");
- var action = "http://zz.com/w.htm?authKey=ssdf";
- if (UA.safari) {
- var form = DOM.create("<form " +
- " method='post' " +
- "action='" + action + "'" +
- " target='ok'" +
- " style='position: absolute;left: -9999;top: -9999px'>");
- DOM.append(form,document.body);
- DOM.append(DOM.create("<input name='authKey' value='ssdf'/>"), form);
- form.submit();
- } else {
- ok.src = action;
- }
- });
update 2011-05-26
1.该问题和 iframe 没有关系,只要是当前页面往第三方页面发送 get 请求,该 get 请求无论是通过 iframe发送,还是通过 img.src 或者通过 script.src ,第三方页面都会写不进 cookie.
2.多次重定向以及 https 情景下依然可用。
场景:
http://a.com/demo.html 嵌入 iframe 页面 http://b.com/cookie.htm?set=2
a.com/demo.html :
- <iframe src='http://b.com/cookie.htm?set=2'></iframe>
b.com/cookie.htm :
- if (request.getParameter("set") != null) {
- // ie need this
- //response.addHeader("P3P", "CP=\"CAO PSA OUR\"");
- String set = request.getParameter("set");
- if (set.equals("1")) {
- System.out.println(request.getPathInfo());
- response.addCookie(new Cookie("logined", "ok"));
- response.sendRedirect(request.getContextPath() + request.getServletPath());
- } else {
- response.sendRedirect("https://a.com/iframe_post.html");
- }
- } else {
- Cookie[] cs = request.getCookies();
- if (cs != null) {
- for (Cookie c : cs) {
- if (c.getName().equals("logined")) {
- response.getWriter().println("logined : " + c.getValue());
- }
- }
- }
- }
会使得 a.com 中的 iframe 跳转多次,
iframe -> b.com/cookie.htm?set=2 -> https://a.com/iframe_post.htm
a.com/iframe_post.htm 会再次发送请求给 b.com/cookie.htm?set=1 ,这时会设置 cookie:
a.com/iframe_post.htm :
- <meta charset='utf-8'/>
- <script type="text/javascript" src="../../base/javascript/kissy.js"></script>
- <script type="text/javascript">
- KISSY.ready(function(S) {
- S.use("ua,dom", function(S, UA, DOM) {
- var ok = S.get("#ok");
- var action = "https://b.com/cookies?set=1";
- if (UA.safari) {
- var form = DOM.create("<form " +
- " method='post' " +
- "action='" + action + "'" +
- " style='position: absolute;left: -9999;top: -9999px'>");
- DOM.append(form,document.body);
- DOM.append(DOM.create("<input name='set' value='1'/>"), form);
- form.submit();
- } else {
- window.location = action;
- }
- });
- });
- </script>
关键在于设置 cookie 前的这一请求在 safari 下必须为 post 过去的!即 a.com/iframe_post.html 中的 UA 判断,通过 form 提交使得自身跳转到 b.com/cookie.htm
你好,看了这篇文章,感觉写的很好。这里有一个问题想请教一下,safari浏览器下通过form表单形式提交请求来代替iframe.src属以解决子域cookie读写问题,这里,是不是说在safari中,父页面的iframe.src值应该设为空,而iframe标签是一个摆设,或者只是充当了div标签的角色?