1

寻找一种在 IE 中检测 Google 工具栏存在的方法,我注意到在 64 位环境中,并且使用 IE9,http_user_agent 不显示有关它的信息。

例如,在 IE8

Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; BTRS31753;GTB7.4)

但在 IE9 中没有

任何想法?

4

1 回答 1

4
<html>
    <head>
        <title>Google Toolbar Detection</title>
        <object id="detection" classid="clsid:00EF2092-6AC5-47c0-BD25-CF2D5D657FEB"></object>
    </head>
    <body>
        <script language="javascript" type="text/javascript">
            if (typeof (detection) != "undefined") {
                if (typeof (detection.Search) != "undefined") {
                    document.write("Google Toolbar Installed");
                } else {
                    document.write("Google Toolbar Not Installed");
                }
            } else {
                document.write("This is not MSIE");
            }
        </script>
    </body>
</html>
于 2013-02-12T07:49:55.217 回答