기술이 된 상상/TIL
[HTML] 전화걸기, 통화 연결 기능
Indigo_Pure
2023. 11. 9. 17:27
728x90
반응형
전화 걸기 기능
웹페이지에서 전화 앱을 연결하는 기능입니다. PC의 경우는 전화를 사용할 수 있는 앱이 호출 됩니다.
MAC에서는 FaceTime이 열리네요.
모바일에서는 전화번호가 입력된 전화 화면으로 바로 연결됩니다.
HTML a 요소 사용
<!DOCTYPE html>
<html>
<body>
<p>To create a link to a telephone number, use tel: inside the href attribute:</p>
<p><a href="tel:+4733378901">+47 333 78 901</a></p>
</body>
</html>
Javascript window.location.href 사용
<!DOCTYPE html>
<html>
<body>
<p>To create a link to a telephone number, use tel: inside the href attribute:</p>
<p><button onclick="window.location.href='tel:+4733378901'">+47 333 78 901</a></p>
</body>
</html>
W3Schools online HTML editor
The W3Schools online code editor allows you to edit code and view the result in your browser
www.w3schools.com
728x90
반응형