728x90
반응형
location.href 메소드를 이용해서 아주 간단하게 전화걸기 기능을 구현할 수 있다.
1. 전화걸기
function phoneCall(phoneNumber) {
location.href = "tel:" + num;
}
phoneCall("01011112222");
2. 영상전화걸기
function phoneCall(phoneNumber) {
location.href = "tel-av:" + num;
}
phoneCall("01011112222");
3. 문자 보내기
function phoneCall(phoneNumber) {
location.href = "sms:" + num;
}
phoneCall("01011112222");
4. 메일 보내기
function phoneCall(phoneNumber) {
location.href = "mailto:" + num;
}
phoneCall("01011112222");
이것들은 a 태그 또는 버튼태그로도 사용할 수 있다.
<button onclick="document.location.href='tel:010-1234-5678'">
<a href="tel:010-1234-5678">010-1234-5678로 전화걸기</a> </div>
728x90
반응형
'Back-End > Node.js' 카테고리의 다른 글
Node.js | Multer 를 이용한 AWS S3 파일 업로드 구현(1) (2) | 2022.04.26 |
---|---|
Node.js | Multer 설치 및 기본 메소드 (0) | 2022.04.26 |
puppeteer 를 이용한 웹 크롤링 (0) | 2022.04.11 |
Node.js | Base64 인코딩, 디코딩 하는법 (0) | 2022.03.30 |
Node.js | 쿠키 설정 (0) | 2021.12.20 |