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.
有什么方法可以自动关闭 Internet Explorer 的弹出窗口阻止程序使用 javascript 或 vbscript?我不想使用 activeX 对象,因为它对我的应用程序构成安全威胁,因此我不能使用 GetObject。
请建议。
正如 mplungjan 指出的那样,显然你不能这样做。
相反,使用弹出窗口阻止程序。仅尝试打开新窗口以直接响应用户操作,例如单击。弹出窗口拦截器足够聪明,可以让你做到这一点。
更好的是,根本不要使用弹出窗口。在现代 Web 编程中很少需要它们。相反,将元素定位在 z 顺序中的其他元素之上。可以直接响应用户事件来处理适合实际单独窗口的少数用例。