iPhone:从 Javascript 调用手机
有人知道我可以使用任何框架来通过单击 Javascript 中的链接来调用电话吗?
[[UIPaaplication sharedApplication] openURL:[NSURL URLWithString:@"tel:123456"]];
我希望制作一个网络应用程序而不是本机应用程序。
在 Android 中通过 addJavascriptInterface 很容易做到,但我想知道 iPhone 是否有类似的东西?
Anyone know of any frameworks that I can use to invoke a phone call on clicking a link in Javascript?
[[UIPaaplication sharedApplication] openURL:[NSURL URLWithString:@"tel:123456"]];
I was hoping to do a web app instead of a native app.
It's easy to do in Android via addJavascriptInterface, but I was wondering if there was anything similar for iPhone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用指向
tel:
URL 的常规链接,如下所示:如果用户触摸该链接,系统将提示他们拨打指定的号码。
另一方面,如果您尝试通过 Javascript 自动拨打号码(绕过确认警报),我敢肯定您运气不好。太多的潜在的漏洞和烦恼。
Just use a regular link pointing to a
tel:
URL, like this:If the user touches that link, they'll be prompted to call the number specified.
On the other hand, if you're trying to automatically dial a number via Javascript—bypassing the confirmation alert—I'm pretty sure you're out of luck. Too much potential for exploits and annoyance.