简体   繁体   中英

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. Is this posible?

For the record, I am using <meta name="format-detection" content="telephone=no"> to prevent default system stylings.

Thanks a lot

make 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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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