<a href="#">010-111-1111</a>
편리성을 위해 위의 전화번호 텍스트를 전화 연결 링크로 변경해주는데, 통계나 정보 페이지에서 전화번호가 아닌 일반 숫자로 표시되어야 하는 것이 가끔 전화번호로 인식되어 Data Detecting이 되곤 한다.
이를 방지하기 위해 아래와 같이 할 수 있다.
사이트 전체에 방지
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="date=no">
<meta name="format-detection" content="address=no">
<meta name="format-detection" content="email=no">
해당 요소에만 방지
<a href="#" x-apple-data-detectors="false">010-111-1111</a>






덧글