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"/>
时间: 2024-10-04 00:27:17