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 来检测此活动并停止它?或者,有没有办法检测用户并将其重定向到带有删除说明的页面?
理论上,是的。
这完全取决于工具栏是否公开了 javascript 可以访问的公共变量。例如,Chrome 的 MyToolbar 可以暴露对象,mt 然后你可以做一个
mt
if ( typeof mt !== 'undefined' ) { // they have it installed.
您需要研究工具栏,并确定它们是否公开这些。