Disabling email,number detection in android WebView

时光怂恿深爱的人放手 提交于 2019-12-04 20:55:45

You should be able to add the following to the <head> of your HTML document.

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

This should work on most WebKit browsers, such as Android, BlackBerry, and iOS.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!