输入banner图图片脚本导航/分类

window.open不被拦截的实现代码_jquery

代码如下:

$("#last").click(function(){
var w=window.open();
setTimeout(function(){
w.location="http://www.baidu.com";
}, 1000);

return false;
});