我该如何解决Safari中的anchor属性问题

时间:2018-09-11 16:12:12

标签: php wordpress html5 css3

我的锚标签有问题。我在网站上使用619-618-1660,问题是当我在野生动物园浏览器或iPhone上检查我的网站时,文字写成(href =“ tel:619 -618-1660“)正在显示。您可以在下面的链接中查看图像。

enter image description here

2 个答案:

答案 0 :(得分:0)

将此元标记添加到html顶部

<meta name="format-detection" content="telephone=no">

先前问过的here

答案 1 :(得分:0)

问题已解决,有一个名为print.css的文件,带有此代码。

body {background:white!important; color:black!important;}#nav,#sidebar,.sidebar,#skip {display:none;}#content {width:100%; float:none; background:transparent ;} a:not(.logo a){font-weight:bold; text-decoration:underline; color:#06c;} a:not(.logo a):after {content:“ [” attr(href)“ ]“;} p {font-size:14px;}#printOnlyMessage {display:block!important;}

在此代码中会产生错误的是

a:not(.logo a):之后{content:“ [” attr(href)“]”;}

所以我删除了这段代码,错误得到解决。