href =“tel:”和手机号码
如果我使用tel:
我应该写这样的国际电话代码。
<a href="tel:+6494461709">61709</a>
到目前为止,这么好,但是我找不到如何以“国际”方式写手机号码的信息,如果有的话。
在所在国家/地区内拨打号码时,您仍然需要拨打国内中继号码,然后再拨打其他号码。 例如,在澳大利亚,可以拨打:
0 - trunk prefix 2 - Area code for New South Wales 6555 - STD code for a specific telephone exchange 1234 - Telephone Exchange specific extension.
对于一个手机,这成为
0 - trunk prefix 4 - Area code for a mobile telephone 1234 5678 - Mobile telephone number
现在,当我想通过国际中继线拨打时,您需要删除中继线前缀,并将其replace为国际拨号前缀
+ - Short hand for the country trunk number 61 - Country code for Australia 4 - Area code for a mobile telephone 1234 5678 - Mobile telephone number
这就是为什么你经常发现拨打国际电话时,电话号码的第一位数字被丢弃,即使使用国际前缀在同一个国家内拨号也是如此。
因此,根据德国的干线前缀,将0
添加到德国的国际呼叫代码 (例如),并加上+49
:
<a href="tel:+496170961709" class="Blondie"> Call me, call me any, anytime <b>Call me (call me) I'll arrive</b> When you're ready we can share the wine! </a>
我知道OP在询问国际国家代码,但对于北美,您可以使用以下内容:
<a href="tel:1-847-555-5555">1-847-555-5555</a> <a href="tel:18475555555">Click Here To Call Support 1-847-555-5555</a>
这可能会帮助你
BlackBerry浏览器和iOS版Safari(iPhone / iPod / iPad)会自动检测电话号码和电子邮件地址,并将其转换为链接。 如果您不想使用此function,则应使用以下元标记。
对于Safari:
<meta name="format-detection" content="telephone=no">
对于BlackBerry:
<meta http-equiv="x-rim-auto-match" content="none">
资料来源: mobilexweb.com
一样的。 您的国际格式已经是正确的,并且在可能的情况下,build议在所有情况下使用。