标签:
1.去除iphone下input的默认样式:
input { -webkit-appearance:none; border-radius: 0; }
2.禁止用户长按选择页面内容:
body{ -webkit-user-select:none; }
3.实现:active效果:
<body ontouchstart=""></body>
4.禁止ios自动识别号码:
<meta name="format-detection" content="telephone=no"/>
标签:
原文地址:http://www.cnblogs.com/diva/p/4013648.html