Google.cn的JavaScript跳转代码

Google今天发布了关于Google.cn中文服务的申明,google.cn ICP证书今天到期,以前Google.cn会自动跳转至Google.com.hk。google.cn现在通过一个中转页面 http://www.google.cn/landing/cnexp/indexd.html 至Google.cn,而不是直接跳转。Google希望用这种方法来实现ICP拍照的续期。

Google今天发布了关于Google.cn中文服务的申明,google.cn ICP证书今天到期,以前Google.cn会自动跳转至Google.com.hk。google.cn现在通过一个中转页面 http://www.google.cn/landing/cnexp/indexd.html 至Google.cn,而不是直接跳转。Google希望用这种方法来实现ICP拍照的续期。

在 http://www.google.cn/landing/cnexp/indexd.html 页面中有个JavaScript跳转代码,稍微改一下就是一个JavaScript弹窗代码,而且这个JavaScript跳转/弹窗代码兼容所有的浏览器。

下面给出Google的JavaScript跳转/弹窗代码:


var gcn=gcn||{};
gcn.listen=function(a,e,b) {
if(a.addEventListener) {
a.addEventListener(e,b,false)
}else if(a.attachEvent){
a.attachEvent(‘on’+e,b)
}
};

gcn.redirect=function() {
window.location=’http://www.google.com.hk/webhp?hl=zh-CN&sourceid=cnhp’
};

gcn.listen(document, ‘click’, gcn.redirect);

Leave a Reply

Your email address will not be published. Required fields are marked *