当 iPad 使用访问网站时,网站模板会发生变化
一个简单的问题是,如何通过检测该人正在使用的浏览器或设备来更改我的“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可行,但您应该使用更标准的
window.location
:CDATA
注释 没有必要,因为现在没有人使用 XML。 (或者你也是?)That should work, but you should use the more standard
window.location
:CDATA
comments are not necessary, since nobody uses XML these days. (Or do you?)