1

我可以制作一个弹出窗口,但是如何让它接受击键。我的似乎以只读模式打开......这是我使用的代码

window.open('http://fous.com/testfile.html','popup','width=800,height=1000,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0');
4

1 回答 1

0

选项组合似乎在使用时锁定了窗口:

window.open('http://fous.com/testfile.html', 'popup','width=800,height=1000,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0');

这似乎给出了理想的结果。

myWindow=window.open('http://fous.com/testfile.html','','width=800,height=1000', top=0,left=0,scrollbars=0)
于 2013-06-03T15:16:59.780 回答