Could I create “Call” button in HTML 5 IPhone appl

2020-08-26 11:37发布

问题:

Could I create "Call" button in HTML 5 IPhone application using PhoneGap? Pushing this button should invoke call to certain number on IPhone device.

回答1:

If you can specify a URL for the button, use the URL format tel:phonenumber.



回答2:

Best format is no punctuation in the number, so:

<a href="tel:+18002752273"> Call Apple Customer Support at 1-800-275-2273 </a>


回答3:

Use this "tel:phonenumber" it will NOT work on emulator, but it works on real device.