Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Gd day 我有一个项目,一个移动浏览器版本 在 iPhone 上,所有号码都是可调用的, 我想选择所有可调用的号码并停止调用选项 示例:
<div>123456789</div> <span>123456789</span> <p>123456789</p> <p>1234,567,89</p>
我想说的是数字与不同的标签一起使用:div、span、p ... ???
将此添加到<head>您的页面:
<head>
<meta name="format-detection" content="telephone=no" />
它将阻止 IOS 自动格式化电话号码
如果您无法访问 HTML,您应该能够防止数字的样式发生更改并防止单击以下内容:
a[href^=tel]{ text-decoration:none; color:inherit; pointer-events: none; cursor: default; }
以上应该适用于IOS。