我有这个看看用户是否在 ios
if (navigator.userAgent.match(/Mac OS X/i)) {
}
但是我怎么能隐藏这个
<div style="text-align: center;"><a href="http://db.tt/b6ecH2Dh" id="down"><img src="img/download.gif"/></div>
如果不在 ios 设备上?
Best Answer-推荐答案 strong>
为DIV标签定义一个id:
<div id="someid" style="text-align: center;"><a href="http://db.tt/b6ecH2Dh" id="down"><img src="img/download.gif"/></div>
在 JS 中:
document.getElementById("someid").style.visibility = "hidden";
(已编辑,根据 ponited)
关于php - 根据用户是否在 ios 上显示/隐藏下载按钮,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8472990/
|