码迷,mamicode.com
首页 > 其他好文 > 详细

sarafi浏览器iframe跨域cookie无效的处理方案(笨方法,看官莫笑)

时间:2016-01-15 20:00:48      阅读:480      评论:0      收藏:0      [点我收藏+]

标签:

<script>
    $(function(){
        url = ‘oauth_authorize_api‘;
        loaded = false;
        iframe = ‘<iframe id="login" width="100%" height="500" src="‘ + url + ‘"></iframe>‘;
        $(".test").click(function(){
            if(loaded) return false;
            if(!/chrome\/\d+/.test(navigator.userAgent.toLowerCase()) && /safari\/\d+/.test(navigator.userAgent.toLowerCase())) {
                myWindow = window.open(url,"myWindow",‘width=1,height=1‘);
                setTimeout(function(){
                    myWindow.close();
                    $("#iframe").append(iframe);
                },1000);
            } else {
                $("#iframe").append(iframe);
            }
            loaded = true;
        });
    })
</script>
<a class="test" href="#">登录</a>

<div id="iframe"></div>

  

sarafi浏览器iframe跨域cookie无效的处理方案(笨方法,看官莫笑)

标签:

原文地址:http://www.cnblogs.com/flytome/p/5133929.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!