是否可以确定与浏览器窗口相关的弹出窗口的位置?例如左,右,上等等。
我知道我可以设置大小,滚动条等
我使用以下命令打开窗口:
javascript:(function(){window.open('http://myurl.com/mypage.html')})()
此弹出窗口是从书签工具栏中生成的,因此是一个链接
答案 0 :(得分:1)
这是方法语法:
var windowObjectReference = window.open(strUrl, strWindowName[, strWindowFeatures]);
对于位置使用left
和top
参数,所以它将是这样的:
javascript: (function () {
window.open('http://myurl.com/mypage.html',
'windowname',
'toolbar=yes,top=10,left=10,width=200,height=200')
})()
left
,top
,width
,height
以像素为单位。
请查看此链接以获取更多信息: