如何将 ENTER 键发送到 IE7 中的页面设置对话框
我有以下代码可以更改页面方向。它在 IE6 中有效,但在 IE7 中无效。它到达 %a 并且不会发送 Enter 或 Tab 键,以便我可以点击“确定”
var shell;
function SetPrintProperties() {
shell = new ActiveXObject("WScript.Shell");
shell.SendKeys("%fu"); // %=alt f= file u= page setup
window.setTimeout("javascript:SetPaperSize();", 1500);
}
function SetPaperSize() {
shell.sendKeys("%a{ENTER}");
}
I have the following code that changes the page orientation. it works in IE6 but not in IE7. it gets as far as %a and does not send the enter or tab keys so that i can hit 'OK'
var shell;
function SetPrintProperties() {
shell = new ActiveXObject("WScript.Shell");
shell.SendKeys("%fu"); // %=alt f= file u= page setup
window.setTimeout("javascript:SetPaperSize();", 1500);
}
function SetPaperSize() {
shell.sendKeys("%a{ENTER}");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
从此处运行此程序
Try to run this
From here