簡體   English   中英

同時使用TEL和EMAILTO

[英]Using TEL and EMAILTO at the same time

因此,即時通訊正在處理網站即時編碼上的一個小問題,我這樣做是為了使任何圖片均可點擊,並會激活一個電話號碼以致電即時通訊來處理預訂(餐廳,水療中心,服務,當單擊它會觸發電話應用任何移動設備和PC上的Skype。

由於不是每個人都有一個Skype帳戶(具有信用),當網站在桌面上使用已經帶有tel標簽的相同圖像時,如何實現emailto標簽?

這是使用jQuery和isMobile的快速解決方案,以及用於保存電話號碼的data屬性。

 $(document).ready(function() { // Determine if we're using a mobile device if (isMobile.any) { // Loop through each link with the data-tel attribute $('[data-tel]').each(function() { $(this) // Update the link's href to use the telephone number .prop('href', 'tel:' + $(this).data('tel')) .text('Tel link (mobile detected)'); }); } }); 
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/ismobilejs/0.4.1/isMobile.js"></script> <a href="mailto:test@aol.com" data-tel="555-1234-567"> Email link (desktop detected) </a> 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM