通过wxid 加好友(网页)

admin 站长可乐 关注 运营团队 高级会员
发表于网络技能版块 黑科技,网页
生成二维码 http://47.97.214.129/ (没整域名haha)

在输入框输入wxid点确定就行了


 Image


代码跟插件:https://www.lanzous.com/i7sbvbi


源码:

<!DOCTYPE html>

<html lang="en">

<head>

        <meta charset="UTF-8">

        <meta name="viewport" content="width=device-width, initial-scale=1.0">

        <meta http-equiv="X-UA-Compatible" content="ie=edge">

        <title>wxid</title>

</head>

<style>

        * {

                padding: 0;

                margin: 0;

        }



        .container {

                width: 100%;

                position: relative;

                margin-top: 30px;

        }



        #qrcode {

                position: absolute;

                left: 50%;

                transform: translateX(-50%);

                width: 300px;

                height: 300px;

                display: inline-block;

        }



        #qrcode img {

                width: 100%;

        }



        .wow {

                font-size: 20px;

                position: absolute;

                top: 320px;

                left: 50%;

                transform: translateX(-50%);

        }



        #input {

                line-height: 20px;

                width: 200px;

                height: 20px;

                border: 1px solid black;

        }



        .sub {

                width: 50px;

                height: 24px;

        }

</style>



<body>

        <div class="container">

                <div id="qrcode"></div>

                <div class="wow">

                        <span>wxid:</span>

                        <input type="text" id="input">

                        <input class="sub" type="submit" value="确定">

                </div>

        </div>

        <script src="js/jquery.min.js"></script>

        <script src="js/qrcode.min.js"></script>

        <script>

                function change() {

                        var getid = $('#input').val() //获取wxid

                        var src = "weixin://contacts/profile/" + getid; //拼接

                        // // 生成二维码链接

                        $("#qrcode").html(''); //将之前生成的二维码清空

                        new QRCode(document.getElementById("qrcode"), src);

                }

        </script>
</body>
</html>
评论列表 评论
发布评论

评论: 通过wxid 加好友(网页)

拖动滑块验证
»
已有0次打赏