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

时间:2015-06-26 09:22:58

标签: javascript jquery css whatsapp

我在我的网站上添加WhatsApp共享按钮,并且当用户设备上不存在(不支持)WhatsApp功能时,我想隐藏此按钮。有一个简单的方法吗?或者任何方式?

我找到了http://whatsapp-sharing.com,但它对我来说有一些不利之处。 - 不支持自定义按钮/图标 - 看起来它只检测Android和IO(Windows Phone呢?) - 难以维持更大的项目

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

1 个答案:

答案 0 :(得分:3)

DEMO

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

    });
});

SOURCE