使用 jQuery 关闭移动浏览器窗口
我使用 asp.net mvc3 和 jQuery mobile 开发了一个移动网站。我想通过允许用户单击“注销”按钮来处理注销事件。
任何人都可以帮助我通过单击“注销”按钮关闭移动浏览器窗口。我尝试了以下代码:
window.close();
使用嵌入在视图中的 javascript,但它仅适用于 IE 浏览器,不适用于 Safari 和 FireFox。
谢谢&问候, 桑托什·库马尔·帕特罗
I have developed a mobile site using asp.net mvc3 and jQuery mobile. I want to handle the signout event by allowing the user to click the SignOut button.
Can anyone help me to close the mobile browser window on click of the SignOut button. I tried the folliwng code:
window.close();
Using the javascript embedded in the View, but it is working for the IE browsers only not for the Safari and FireFox.
Thanks & Regards,
Santosh Kumar Patro
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是使用脚本关闭浏览器的唯一方法,因此如果这不起作用,则无法完成。
大多数桌面浏览器会要求用户确认是否尝试使用脚本关闭窗口。显然,有些移动浏览器无需确认就允许它,有些则在不询问用户的情况下忽略它。
That's the only way that you can close the browser using script, so if that doesn't work, it can't be done.
Most desktop browsers will ask the user to confirm if you try to close the window using script. Apparantely some mobile browsers allow it without confirmation, and some ignore it without asking the user.