告诉 iPhone 这个特定号码不是电话号码
这可能是一个相当简单的问题,我认为它比其他任何问题都更有趣,但是我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
或在你的 html 集中
Try this
or in your html set
您可以使用 UIWebView 的 dataDetectorTypes 属性并告诉它不识别电话号码。仅当您的 HTML 没有任何您希望在 Web 视图中可点击的实际电话号码时才会出现这种情况。
You can use the
dataDetectorTypes
property ofUIWebView
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.