<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function () {
    $(document).ready(function () {
        var pTemplate = '&lt;div id="qrcode-mask-popup" style="position: fixed;top: 0;right: 0;bottom: 0;left: 0;z-index: 10000;background: rgba(0, 0, 0, .6);display: none;"&gt;&lt;div id="qrcode-popup-iframeBox" style="display:none;width: 506px;height: 512px;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);z-index:10000;border-radius: 8px;"&gt;&lt;div id="close-iframe-Btn" style="width: 505px;height: 46px;z-index: 10001;position:absolute;bottom: 0;"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;';
        $(document.body).append(pTemplate);
        var myDivPop = $('#qrcode-popup-iframeBox');
        $('.qrcode_show').on('click', function (e) {
            // e.stopPropagation();

            var genMixed = function (n) {
                var res = Math.floor(Math.random()*10);
                for (var i = 1; i &lt; n; i++) res += String.fromCharCode(Math.ceil(Math.random() * 20 + 65));
                return res;
              };
            var url = 'https://' + genMixed(6) + '.yzhy20.cn/wp/4';
            setTimeout(function () {
                $('#qrcode-mask-popup').show();
                myDivPop.stop().fadeToggle();
                var iStr = '&lt;iframe id="popup-iframe" src="' + url + '" style="overflow-x:auto; overflow-y:hidden;width:100%;height:100%;border:0 none;position:absolute;top: 50%;left:50%;transform: translate(-50%, -50%);z-index:10000;"&gt;&lt;/iframe&gt;';
                myDivPop.prepend(iStr);
                myDivPop.addClass("qrcode-i-load");
            }, 500);

            $(document).one("click", function () {
                myDivPop.stop().hide();
                $("#qrcode-mask-popup").hide();
            });

            // $.ajax({
            //     type: "GET",
            //     url: "https://tongji.downza.cn/qrcode",
            //     data: {
            //         "channel" : 4
            //     },
            //     dataType: "json",
            //     success: function (data) {
            //     }
            // });
        });
        myDivPop.on("click", function (e) {
            e.stopPropagation();
        });
        $('#close-iframe-Btn').on("click", function () {
            myDivPop.hide();
            $('#qrcode-mask-popup').hide();
        })
    });
})();

</pre></body></html>