适用于iOS的移动Chrome:tel-anchors越野车?

时间:2013-01-03 06:29:13

标签: html ios google-chrome mobile mobile-safari

我在移动Chrome for iOS中打开电话号码链接时遇到问题。如果您在手机上打开测试页(http://roethig.it/sandbox/phone-links.html),它在Safari上运行正常,手机会询问您是否要拨打该特定号码。

如果您使用移动Chrome for iOS试用它会弹出几次。有没有解决方法可以避免这种情况?

这是我使用的标记:

<a href='tel:123456789' title='Free Call 123456789' class='tel'>Free Call 123 456 789</a>

在iPhone 5上的iOS 6.0.2上测试

非常感谢!

2 个答案:

答案 0 :(得分:4)

解读Google搜索结果中的代码,以下似乎解决了这个问题(暂时):

<a href="javascript:void(0)" onclick="window.location='tel:123456789'"
   title="Free Call 123456789" class="tel">Free Call 123 456 789</a>

(iPhone 5,iOS 6.0.2)

答案 1 :(得分:0)

我遇到了同样的问题,并使用tel://而不是tel:修复了问题。另外,请确保没有任何“不必要”的属性,例如target,因为这可能会“混淆”小铬:)