小编Vin*_*ani的帖子

使用 whatsapp web 共享数据

我只是想知道是否可以在桌面站点上添加 whatsapp 共享按钮并使用 whatsapp web 共享数据。对于移动插件可用,但对于桌面我找不到任何东西。任何人都可以提出一些建议。

我尝试了一些链接正在打开的代码,但如何将数据附加到它。

这是javascript

<script type="text/javascript">
            $(document).ready(function() {
                $('.whatsapp').on("click", function(e) {
                    if(/Android|webOS|iPhone|iPad|iPod|Chrome|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
                        var article = $(this).attr("data-text");
                        var weburl = $(this).attr("data-link");
                        var whats_app_message = encodeURIComponent(article)+" - "+encodeURIComponent(weburl);
                        var whatsapp_url = "https://web.whatsapp.com://send?text="+whats_app_message;
                        window.location.href= whatsapp_url;
                    }else{
                        alert('you are not using mobile device.');
                    }
                });
            });
        </script>
Run Code Online (Sandbox Code Playgroud)

这是html代码

<div class='web'>
    <h2><a href='http://www.stepblogging.com/google-cloud-messaging-push-notification-in-android-using-php-mysql/' target='_blank'>Google Cloud Messaging / PUSH Notification in Android using PHP, MYSQL</a></h2>
    <p>Google Cloud Messaging for Android (GCM) is a free service that helps us to …
Run Code Online (Sandbox Code Playgroud)

javascript jquery whatsapp

5
推荐指数
1
解决办法
2749
查看次数

标签 统计

javascript ×1

jquery ×1

whatsapp ×1