背景 經測試,android手機中沒有這個問題, iphone手機中的Safari瀏覽器會出現這個問題。 例如: 解決辦法: 給鏈接加上 target="_parent", 如果iframe的嵌套比較深可以用 target="_top" ...
背景
經測試,android手機中沒有這個問題, iphone手機中的Safari瀏覽器會出現這個問題。
例如:
<a href = "tel://1-408-555-5555">1-408-555-5555</a>
解決辦法:
給鏈接加上 target="_parent", 如果iframe的嵌套比較深可以用 target="_top"
<a target="_parent" href="tel://1-408-555-5555">1-408-555-5555</a>