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.
我尝试使用 javascript 禁用特定用户登录。如果用户尝试登录,我将关闭窗口。我看到了一些关于将脚本添加到 main.aspx 页面的示例,但它不起作用。
请帮忙。
我解决了。我添加了
<script> this.onload=function(){ if(USER_GUID.indexOf("{D9D73FD0-F377-E511-85D2-000C29458CDD}") > -1) { window.location.replace(null); } } </script>
在 main.aspx 中的结束正文标记之前