我想要做的是为桌面浏览器提供正常链接,如下所示:
<div style="text-align: center;">
<a href="http://db.tt/b6ecH2Dh">
<img src="img/download.gif"/>
</div>
但是当iOS用户点击链接时,它应该打开一个不同的链接:
<div style="text-align: center;">
<a href="cydia://package/bla">
<img src="img/download.gif"/>
</div>
我可以使用JavaScript或PHP吗?如果是这样的话?
EDIT 要使用javascript执行此操作,请将此脚本放入您的HTML DOC中
<script type="text/javascript">
if (navigator.userAgent.match(/Mac OS X/i)) {
document.getElementById('down').href="http://www.google.com";
}
</script>
答案 0 :(得分:1)
答案 1 :(得分:1)
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
{
document.getElementById('download_link').href = "http://iphonedl";
}
应该工作