h5 features telephone feature
<input>
label could invoke the telephone functionality of the smart phone system.
<a href="tel:123456789"></a>
In html 5, when you open the web page with smart phone, it will invoke the telephone functionality if clicking on the <a>
. Wechat also support the same feature.
telephone feature in wechat
Any label only contains digits will be recognized as phone number in Wechat.
<p>123456789</p>
When you open the web page and click on the <p>
label in wechat, it will pop up a window which ask you whether to dial the number or not. But you could add the header <meta name="format-detection" content="telephone=no"/>
to avoid the telephone feature.