当 iPad 使用访问网站时,网站模板会发生变化

发布于 2025-01-07 12:58:22 字数 328 浏览 0 评论 0原文

一个简单的问题是,如何通过检测该人正在使用的浏览器或设备来更改我的“iPad.html”页面。

有人告诉我,这就是解决方案:

<script type="text/javascript"> // <![CDATA[
    if ((navigator.userAgent.indexOf('iPad') != -1)) {
        document.location = "http://www.mysite.com/ipad.html";
    } // ]]>
</script>

我只是想确保这是正确的。

A quick question, How do I change to my 'iPad.html' page by detecting what browser or device that person is using.

Some one told me that this is the solution :

<script type="text/javascript"> // <![CDATA[
    if ((navigator.userAgent.indexOf('iPad') != -1)) {
        document.location = "http://www.mysite.com/ipad.html";
    } // ]]>
</script>

I just want to make sure that this is right.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

划一舟意中人 2025-01-14 12:58:22

这应该可行,但您应该使用更标准的 window.location

<script type="text/javascript">
    if ((navigator.userAgent.indexOf('iPad') != -1)) {
        window.location.href = "http://www.mysite.com/ipad.html";
    }
</script>

CDATA 注释 没有必要,因为现在没有人使用 XML。 (或者你也是?)

That should work, but you should use the more standard window.location:

<script type="text/javascript">
    if ((navigator.userAgent.indexOf('iPad') != -1)) {
        window.location.href = "http://www.mysite.com/ipad.html";
    }
</script>

CDATA comments are not necessary, since nobody uses XML these days. (Or do you?)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文