gpt4 book ai didi

javascript - 同时使用 TEL 和 EMAILTO

转载 作者:行者123 更新时间:2023-11-28 02:33:30 25 4
gpt4 key购买 nike

所以我正在处理一个网站上的一个小问题,我正在编码,我做到了,所以任何图像都是可点击的,并且会激活一个电话号码来打电话,因为我正在处理预订(餐厅、水疗中心、服务,点击时会触发任何移动设备上的电话应用和 PC 上的 Skype。

由于不是每个人都有 Skype 帐户(有信用),当网站在桌面上使用已经具有 tel 标签的相同图像时,我如何实现 emailto 标签?

最佳答案

这是一个使用 jQuery 和 isMobile 的快速解决方案,以及用于保存电话号码的数据属性。

$(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>

关于javascript - 同时使用 TEL 和 EMAILTO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47563083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com