3

我们有一个向客户发送发货确认电子邮件的应用程序。追踪号码来自加拿大邮政。目前,在 iOS 中查看运单号时,允许客户单击运单号并重定向到 USPS。

http://trackingshipment.apple.com/?Company=USPS&Locale=&TrackingNumber=CanadaPostTrackingNumber

有没有办法阻止iOS预测跟踪号,例如......

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

为电子邮件生成的示例 HTML Div。

    <div>
        <h4>Thank you for your recent purchase from Company.</h4>

        <p>Your order has been scanned and a tracking number is now ready.</p>

        <p>Your tracking number is as follows: "This is an unformatted string tracking number."</p>

        <p>If you would like to view the status of your order you can input the tracking number on this page <a href = 'http://www.canadapost.ca/cpotools/apps/track/personal/findByTrackNumber?execution=e2s1'>here.</a></p>
    </div>
4

1 回答 1

0

只需添加<meta name="format-detection" content="telephone=no">HTML 页面的头部。

如果您有需要作为链接的电话号码,请使用<a href="tel:TELEPHONENUMBER">TELEPHONENUMBER</a>

于 2013-10-13T22:25:44.413 回答