简体   繁体   English

锚链接多个电话号码

[英]Anchor link multiple telephone number

I have a telephone number in my web within an anchor like this: 我的锚中的网络中有一个电话号码,如下所示:

<a href="tel:+00-00-0000-0000">+00 00 0000 0000 / 0001</a>

What I would want to get is something like href="tel:+00-00-0000-0000 OR +00-00-0000-0001" , so that when the user touches on the number inside the anchor he can chose to call one number or another. 我想要得到的是类似href="tel:+00-00-0000-0000 OR +00-00-0000-0001" ,这样当用户触摸锚点中的号码时,他可以选择呼叫一个数字或另一个。 Is this posible? 这可能吗?

For the record, I am using <meta name="format-detection" content="telephone=no"> to prevent default system stylings. 作为记录,我正在使用<meta name="format-detection" content="telephone=no">来防止默认系统样式。

Thanks a lot 非常感谢

make 2 hrefs 使2 hrefs

<div>
<a href="tel:+00-00-0000-0000">+00 00 0000 0000</a>/<a href="tel:+00-00-0000-0001"> 0001</a>
</div>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM