leisure

JAVA - exceed,helloworld
随笔 - 50, 文章 - 0, 评论 - 11, 引用 - 0
数据加载中……

解决IE下location.href丢失refer信息

相信有很多朋友,用javascript做一些跳转时,往往发现refer信息丢失了。为了解决该问题,在IE下,模拟一下点击事件即可!

function jumpTo (url) {
    var isIE 
= !-[1,];
    if (isIE) {
        var link 
= document.createElement("a");
        link.href 
= url;
        link.style.display 
= 'none';
        document.body.appendChild(link);
        link.click();
    } 
else {
        window.location.href 
= url;
    }
}

posted on 2011-11-17 16:54 leisure 阅读(1057) 评论(0)  编辑  收藏 所属分类: javascript


只有注册用户登录后才能发表评论。


网站导航: