有没有办法在Windows 7上的命令行中打开Web浏览器弹出窗口?
我需要传递一些论据:
答案 0 :(得分:0)
我自己最终找到了解决方案。事实上这很简单,就是:
创建一个新的 html 文件(在此示例中,它将在 c:\ openPopup.html 下创建),其中包含一个简单的脚本 tag:
<script>
window.resizeTo(with,height);
window.moveTo(x,y); // (0,0) is the top-left corner of the screen
window.location('http://url-you-want-to-open-as-popup/');
</script>
打开新的 cmd ,然后输入
"C:\Program Files\Internet Explorer\iexplore.exe" c:\openPopup.html
我们正在使用代理打开弹出窗口。我们正在启动我们的代理( openPopup.html ),其中包含在弹出窗口中转换窗口的说明。然后导航到window.location指令中指定的URL。
我还没有办法隐藏地址栏,但这不是强制性的。一个很好的功能是将url作为参数传递。
希望它有所帮助!