设计iphone的网页,你能改变html吗?

时间:2012-10-11 17:56:02

标签: iphone html css mobile

我正在链接到iphone的备用.css,但是是否可以链接到备用.html?我并不过分热衷于浏览原始的HTML,但是如果必须的话,我会这样做。

感谢您的帮助,

汤姆

1 个答案:

答案 0 :(得分:1)

使用此detect handheld device in jquery,您将能够知道哪种掌上电脑正在加载您的页面,而不是您可以将用户重定向到新的html页面。 类似的东西:

if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) )
{
    location.href = "new-page.html";
}