网站上的 WhatsApp 共享按钮。检测 WhatsApp 是否存在的简单方法?

WhatsApp share button on website. Easy way to detect if WhatsApp exists?

我正在我的网站上添加 WhatsApp 分享按钮,我想在用户设备上不存在(不支持)WhatsApp 功能时隐藏此按钮。有简单的方法吗?或者有什么办法吗?

我找到了 http://whatsapp-sharing.com,但它对我来说有一些缺点。 - 不支持自定义 buttons/icons - 看起来它只检测到 Android 和 IOs(Windows Phone 呢?) - 难以维护更大的项目

我正在寻找一些 JS/jQuery 或 CSSonly(mediaqueries?)解决方案,但目前没有成功。 任何建议都会有所帮助,谢谢。

DEMO

试试这个

$(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");
        }

    });
});

SOURCE