您也可以在Google搜索主页上看到它。如果客户端未使用Chrome,那么您会看到Chrome的促销消息。当客户端已使用Chrome时,它不会显示。
我想在我的网站上实现同样的目标。如果客户端未使用Chrome,那么我想显示一条消息。
“为了更好地查看使用Crome”
我怎样才能做到这一点?我正在使用HTML5和CSS3。
答案 0 :(得分:1)
您可以在JavaScript中查看window.chrome
。
<script>
if (window.chrome) {
alert('chrome');
}
</script>
答案 1 :(得分:1)
根据请求,这是IE的条件代码:
<!--[if IE]>
Code for any IE in here. You can load css and/or js.
<![endif]-->
如果你使用jQuery,你可以这样做:
if (!$.browser.webkit) {} // Targets non-wekbit browsers, Chrome, Safari...
答案 2 :(得分:0)
使用此:
if(!(/chrom(e|ium)/.test(navigator.userAgent.toLowerCase()))){
alert("This browser is not fully supported yet, For best results please use Chrome");
}