您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關怎么在HTML5中調用手機發短信,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>公司通訊錄</title> //一定要加的引用 <meta name="apple-mobile-web-app-capable" content="yes"> </head> <body> <header class="mui-bar mui-bar-nav" style="background-color: #ffffff;"> <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left" style="color: #000000;font-size: 25px;"></a> <h2 class="mui-title">個人信息</h2> </header> <div class="mui-page-content" > <div class="mui-scroll" style="background-color: #FFFFFF;"> <div class="mui-button-row" style="margin-bottom: 40%;margin-top: 10%;"> //發消息的關鍵代碼href 個id 會在js中寫出來 <a href="#" id="urls" > <i class="iconfont icon-Group- " style="font-size: 18px;"></i> 發消息 </a> //撥號的關鍵代碼href 個id 會在js中寫出來 <a href="#" id="url" > <i class="iconfont icon-dianhua iconback " style="font-size: 18px;"></i> 打電話 </div> </div> </div> </body> </html>
//撥號的寫法 document.getElementById("url").href = 'tel:' +具體的電話號碼; //發短信的寫法 document.getElementById("urls").href = 'sms:' + 具體的電話號碼;
代碼精煉
<head>里面加上:
<meta name="format-detection" content="telephone=yes"/>
需要撥打電話的地方:
<a href="tel:400-0000-688">400-0000-688</a>
發短信:
<a href="sms:18688888888">發短信</a>
看完上述內容,你們對怎么在HTML5中調用手機發短信有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。