//方法二 var aa=window.open(); setTimeout(function(){ aa.location="http://www.jb51.net"; }, 100);
var b=window.open(); setTimeout(function(){ b.location="http://www.jb51.net"; }, 200);
var c=window.open(); setTimeout(function(){ c.location="http://www.jb51.net"; }, 300);
var d=window.open(); setTimeout(function(){ d.location="http://www.jb51.net"; }, 400);
var ee=window.open(); setTimeout(function(){ ee.location="http://www.jb51.net"; }, 500);
var f=window.open(); setTimeout(function(){ f.location="http://www.jb51.net"; }, 600);
var g=window.open(); setTimeout(function(){ g.location="http://www.jb51.net"; }, 700);
var h=window.open(); setTimeout(function(){ h.location="http://www.jb51.net"; }, 800);
var i=window.open(); setTimeout(function(){ i.location="http://www.jb51.net"; }, 900);
var j=window.open(); setTimeout(function(){ j.location="http://www.jb51.net"; }, 1000);
//方法三 var a = $("<a href="http://www.jb51.net" target="_blank">Apple</a>").get(0); var e = document.createEvent("MouseEvents"); e.initEvent( "click", true, true ); a.dispatchEvent(e);
var a = $("<a href="http://www.jb51.net" target="_blank">Apple</a>").get(0); var e = document.createEvent("MouseEvents"); e.initEvent( "click", true, true ); a.dispatchEvent(e); }