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.
我有一个将在所有浏览器中显示的网站,但我需要它仅在 Firefox 中显示加载警报框。
如何检测浏览器并指定如果它是 Mozilla 则应弹出警报?
您可以在您的网站中包含 jQuery 并尝试以下代码:
if ($.browser.mozilla) { alert( "this is mozilla!" ); // popup if the browser is mozilla }
PS:请记住,这里可以识别所有 Mozilla 衍生产品。