告诉 iPhone 这个特定号码不是电话号码

发布于 2024-11-15 08:06:13 字数 167 浏览 6 评论 0原文

这可能是一个相当简单的问题,我认为它比其他任何问题都更有趣,但是我有一个 webView 显示本地 HTML,其中有一本书的 ISBN 号码,iPhone 将其链接为电话号码并询问我是否我想称呼它。
我如何告诉它不要将其用作电话号码?

(该数字是 p 标签内的纯文本,它没有链接到亚马逊等..)

this is probably a fairly easy question and I think it's more amusing than anything else, but I have a webView displaying a local HTML in which there is a ISBN number of a book, and the iPhone links it as a phone number and asks whether I'd like to call it.
How would I tell it to not use it as a phone number?

(The number is plain text inside a p-tag, it's not linked to amazon or so..)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

帝王念 2024-11-22 08:06:13

试试这个

webview.dataDetectorTypes=0;

或在你的 html 集中

<meta name="format-detection" content="telephone=no">

Try this

webview.dataDetectorTypes=0;

or in your html set

<meta name="format-detection" content="telephone=no">
你穿错了嫁妆 2024-11-22 08:06:13

您可以使用 UIWebView 的 dataDetectorTypes 属性并告诉它不识别电话号码。仅当您的 HTML 没有任何您希望在 Web 视图中可点击的实际电话号码时才会出现这种情况。

You can use the dataDetectorTypes property of UIWebView and tell it to not identify phone numbers. This would only be in the case that your HTML doesn't have any actual phone numbers which you want clickable from within the web view.

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