iPhone:从 Javascript 调用手机

发布于 2024-10-16 01:17:18 字数 262 浏览 8 评论 0原文

有人知道我可以使用任何框架来通过单击 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆里有你的影子 2024-10-23 01:17:18

只需使用指向 tel: URL 的常规链接,如下所示:

<a href='tel:18002752273'>Blah</a>

如果用户触摸该链接,系统将提示他们拨打指定的号码。

另一方面,如果您尝试通过 Javascript 自动拨打号码(绕过确认警报),我敢肯定您运气不好。太多的潜在的漏洞和烦恼。

Just use a regular link pointing to a tel: URL, like this:

<a href='tel:18002752273'>Blah</a>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文