gpt4 book ai didi

用于检测 IE9 64 位中的谷歌工具栏的 Javascript

转载 作者:行者123 更新时间:2023-11-30 10:34:32 27 4
gpt4 key购买 nike

寻找一种方法来检测 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 中没有

有什么想法吗?

最佳答案

<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>

关于用于检测 IE9 64 位中的谷歌工具栏的 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14827745/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com