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 中的 IE 6 版本的最简单方法是什么?我们在这里使用 MooTools,如果是 IEBrowser.Engine.trident也会使用,但是版本号呢?true
Browser.Engine.trident
true
if (Browser.Engine.trident4) alert('is IE6');
只是为了保持最新。您需要的最新版 Mootools:
if (Browser.ie6) alert('is IE6');