我正在设计一个新的小书签,并在 Opera 上对其进行测试。
这是我的代码:
javascript:(function(){var a=window.open('http://www.google.com','Ok','left='+((window.screenLeft||window.screenX)+10)+',top='+((window.screenY||window.screenTop)+0)+',height=200px,width=400px,resizable=1,alwaysRaised=1,location=1,links=0,scrollbars=0,toolbar=0');window.setTimeout(function(){a.focus()},250)})();
问题是新窗口没有出现在顶部,但距离顶部大约 200 像素(在其他浏览器,如 Internet Explorer、Firefox 和 chrome 中效果很好)。
那么,为什么这个窗口没有出现在 Opera 的顶部?