Is there a way to make a phone number clickable on an iphone or android phone to make a call in HTML?

后端 未结 2 1903
自闭症患者
自闭症患者 2020-12-04 20:53

Is it possible to make a phone number clickable in HTML so that when a user clicks on the number it is called?

相关标签:
2条回答
  • 2020-12-04 21:08

    Something like this should work:

    <a href="tel:+1-800-555-5555">Call 1-800-555-5555</a>
    

    More info:

    http://en.wikipedia.org/wiki/URI_scheme#tel:

    http://tools.ietf.org/html/rfc3966

    0 讨论(0)
  • 2020-12-04 21:24

    You can detect a phone number in iOS with:

    <i>web_view.dataDetectorTypes=UIDataDetectorTypePhoneNumber;<i>
    
    0 讨论(0)
提交回复
热议问题