我正在攻击Google书签书签,以使其适合新目的。最终目标是在第三方网站的帮助下将歌曲从youtube直接转换为mp3。这一切都准备好了很棒。 xD xD
但是,当我想同时转换4或5首歌曲时,书签会在同一个窗口中保持打开每个转换。我需要打开多个窗口让它们保持打开状态。
所以,我的问题是:
每次点击时,如何让这个javascript打开一个“新”(!)窗口?
javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open("http://audio-conversion.online-convert.com/?external_url="+c(b.location),"name= My Window1","bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=420px,width=550px,resizable=1,alwaysRaised=1");a.setTimeout(function(){d.focus()},300)})();
答案 0 :(得分:0)
您可以轻松地将随机数附加到窗口标题:)
我修改了你的代码来执行此操作:
javascript:(function(){var a=window,b=document,c=encodeURIComponent,d=a.open("http://audio-conversion.online-convert.com/?external_url="+c(b.location),"name= My Window1"+Math.random(),"bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=420px,width=550px,resizable=1,alwaysRaised=1");a.setTimeout(function(){d.focus()},300)})();