在JavaScript中检测HTML <a>点击通话支持

如今,几乎所有移动设备都支持tel:协议。这包括iOS上的Safari,Android浏览器,Symbian浏览器,Opera Mini等。

像这样添加它-

if (/(HTC825)/i.test(navigator.userAgent)){
   $("a[href^='tel:']").each(function(){
      this.href = this.href.replace("tel:", "wtai://wp/mc;");
   });
}