我在我的网站上添加WhatsApp共享按钮,并且当用户设备上不存在(不支持)WhatsApp功能时,我想隐藏此按钮。有一个简单的方法吗?或者任何方式?
我找到了http://whatsapp-sharing.com,但它对我来说有一些不利之处。 - 不支持自定义按钮/图标 - 看起来它只检测Android和IO(Windows Phone呢?) - 难以维持更大的项目
我正在寻找一些JS / jQuery或CSSonly(mediaqueries?)解决方案,但现在却没有成功。 任何建议都会有所帮助,谢谢。
答案 0 :(得分:3)
Try this
$(document).ready(function() {
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function() {
return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}
};
if( isMobile.any() ) {
//hide the share button
}
$(document).on("click", '.whatsapp', function() {
if( isMobile.any() ) {
var text = $(this).attr("data-text");
var url = $(this).attr("data-link");
var message = encodeURIComponent(text) + " - " + encodeURIComponent(url);
var whatsapp_url = "whatsapp://send?text=" + message;
window.location.href = whatsapp_url;
} else {
alert("Please share this article in mobile device");
}
});
});