使用 JavaScript 将 window 打开到特定大小
Using JavaScript to open a window to a specific size
我想在单击按钮 div 时使用 window.open 方法将 window 打开到特定大小。我参考了一些其他在线资源,并得到了它。
<div class="button" onclick="window.open('http://google.com', '_blank', 'width=600', 'height=600');return false;"></div>
我不确定自己做错了什么,宽度在 Firefox 中有效,但高度却无效。 None 个适用于 Chrome。
所有 window 选项都放在一个字符串中:
<div class="button" onclick="window.open('http://google.com', '_blank', 'width=600, height=600');return false;"></div>
下面的代码应该可以帮助您解决问题,
<div class="button" onclick="window.open('http://google.com', '_blank', 'width=600, height=600');return false;"></div>
试试看,然后告诉我。
我想在单击按钮 div 时使用 window.open 方法将 window 打开到特定大小。我参考了一些其他在线资源,并得到了它。
<div class="button" onclick="window.open('http://google.com', '_blank', 'width=600', 'height=600');return false;"></div>
我不确定自己做错了什么,宽度在 Firefox 中有效,但高度却无效。 None 个适用于 Chrome。
所有 window 选项都放在一个字符串中:
<div class="button" onclick="window.open('http://google.com', '_blank', 'width=600, height=600');return false;"></div>
下面的代码应该可以帮助您解决问题,
<div class="button" onclick="window.open('http://google.com', '_blank', 'width=600, height=600');return false;"></div>
试试看,然后告诉我。