Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近实现了一个基于 .htpasswd 的登录页面,并试图找出一种关闭浏览器窗口的方法(因为我可以通过这种方式重置身份验证,以便用户无法再次登录)。
我的想法是,一旦用户登录并提交他们必须填写的表单信息,提交表单将触发脚本在 5 秒内关闭浏览器窗口。将事先警告用户这将发生。
在编写脚本时,我不是专业编码人员,有什么想法吗?我没有找到关于这个特定主题的太多信息。
使用 jquery/javascript,您可以使用window.close()
window.close()
使用按钮的示例...
html
<button id="close">Close</button>
jQuery
$(document).ready(function() { $('#close').click(function(){ window.close(); }); });
如需更多信息...