我正在使用嵌入在谷歌网站上的谷歌日历。
黑莓用户报告错误,所以我想将他们重定向到另一个页面。
我尝试添加此代码
<script type="text/javascript">
var ua = navigator.userAgent;
var url = "http://optimizedmobile.yoursite.com/";
if (ua.indexOf("BlackBerry") >= 0)
{
if (ua.indexOf("WebKit") >= 0)
{
window.location = url;
}
}
</script>
使用此处提供的说明,但它不起作用。我在我创建的 html 文件中测试了代码,它可以工作。
那么,在页面上包含代码的任何其他想法?您认为 Google 网站不支持该代码吗?
重定向BB用户的任何其他想法?