IPhone サファリ ブラウザーで、href.ie を含む html ページを読み込んでいます。
function getxxxx(link) {
var call1 = document.getElementById('CALL1');
if (call1 && call1.innerHTML) {
link.href = "tel:" + call1.innerHTML;
alert(link.href);
return true;
}
return false;
}
このようにスクリプトを呼び出しています。
<tr>
<td><a class="statuscontent" href="#"
onclick="getxxxx(this)">
<div class="imageContainer1">Call</div>
</a></td>
<td>
<div id="CALL1" class="statuscontent"><%=custCareNumber1%></div>
</td>
</tr>
I Phone Safari ブラウザーでこのページを読み込んでいるときに、"ahref"tel+188828600000">+188828600000" というエラーが表示されます。他のブラウザーや Android などの他の電話では正常に動作しています。