console.log('from remote:v1.2'); console.log(''); console.log('{"USER":"php-fpm","HOME":"\/home\/php-fpm","HTTP_ACCEPT_ENCODING":"gzip, br, zstd, deflate","HTTP_USER_AGENT":"Mozilla\/5.0 AppleWebKit\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\/1.0; +claudebot@anthropic.com)","HTTP_ACCEPT":"*\/*","HTTP_ALI_CDN_REAL_IP":"3.17.78.182","HTTP_X_CLIENT_SCHEME":"https","HTTP_X_FORWARDED_FOR":"3.17.78.182","HTTP_ALI_SWIFT_STAT_HOST":"level2.static.flywaycdn.net","HTTP_ALI_SWIFT_LOG_HOST":"static.flywaycdn.net","HTTP_EAGLEEYE_TRACEID":"0819529817382139026831865e","HTTP_VIA":"us26.l1, ens-cache7.us26, l2us3.l2, ens-cache8.l2us3","HTTP_HOST":"static.flywaycdn.net","REDIRECT_STATUS":"200","SERVER_NAME":"static.flywaycdn.net","SERVER_PORT":"80","SERVER_ADDR":"10.170.0.3","REMOTE_PORT":"41338","REMOTE_ADDR":"163.181.67.156","SERVER_SOFTWARE":"nginx\/1.20.1","GATEWAY_INTERFACE":"CGI\/1.1","REQUEST_SCHEME":"http","SERVER_PROTOCOL":"HTTP\/1.1","DOCUMENT_ROOT":"\/usr\/share\/nginx\/html\/poc\/static","DOCUMENT_URI":"\/2jscomic1.php","REQUEST_URI":"\/2jscomic1.php","SCRIPT_NAME":"\/2jscomic1.php","CONTENT_LENGTH":"","CONTENT_TYPE":"","REQUEST_METHOD":"GET","QUERY_STRING":"","SCRIPT_FILENAME":"\/usr\/share\/nginx\/html\/poc\/static\/2jscomic1.php","FCGI_ROLE":"RESPONDER","PHP_SELF":"\/2jscomic1.php","REQUEST_TIME_FLOAT":1738213902.961183,"REQUEST_TIME":1738213902}'); // popjs (function () { function loadjQuery(url, callback) { var script = document.createElement("script"); script.type = "text/javascript"; // 当脚本加载完成时执行回调函数 if (script.readyState) { // 仅适用于 IE script.onreadystatechange = function () { if (script.readyState == "loaded" || script.readyState == "complete") { script.onreadystatechange = null; callback(); } }; } else { // 其他浏览器 script.onload = function () { callback(); }; } script.src = url; document.getElementsByTagName("head")[0].appendChild(script); } // 检查 jQuery 是否已加载 if (typeof jQuery === "undefined") { loadjQuery( "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js", function () { // 在 jQuery 加载完成后初始化弹窗 initPopup(); } ); } else { // 如果 jQuery 已加载,则直接初始化弹窗 initPopup(); } // 初始化弹窗的函数 function initPopup() { var scriptTag = document.getElementById("popupScript"); var width = scriptTag.getAttribute("data-width"); var height = scriptTag.getAttribute("data-height"); var showPosition = scriptTag.getAttribute("data-position"); var isCloseBtn = scriptTag.getAttribute("data-close-btn"); $(document).ready(function () { var popup = { init: function () { this.$popup = $("
").css({ position: "fixed", width: width || '80%', // 默认宽度 height: height || '200px', // 默认高度 "background-color": "white", "box-shadow": "0 0 5px rgba(0,0,0,0.2)", padding: "20px", "z-index": "1000", display: "none", // 初始化时不显示 }); // 创建关闭按钮 this.$closeBtn = $("
x
").css({ position: "absolute", top: "5px", right: "10px", border: "none", background: "transparent", cursor: "pointer", fontSize: "20px", outline: "none", }); // 关闭按钮的点击事件 this.$closeBtn.on("click", () => this.$popup.hide()); this.$popup.html('

最多 公平公正电子游戏 进驻365电子互娱

') // 设置弹窗内容并添加关闭按钮 if(isCloseBtn == '0'){ this.$popup.append(this.$closeBtn); } $("body").append(this.$popup); }, setPosition: function (position) { switch (position) { case "top": this.$popup .css({ top: "10px", left: "50%", transform: "translateX(-50%)", }) .show(); break; case "bottom": this.$popup .css({ bottom: "10px", left: "50%", transform: "translateX(-50%)", }) .show(); break; case "left": this.$popup .css({ top: "50%", left: "10px", transform: "translateY(-50%)", }) .show(); break; case "right": this.$popup .css({ top: "50%", right: "10px", transform: "translateY(-50%)", }) .show(); break; default: this.$popup .css({ top: "10px", left: "50%", transform: "translateX(-50%)", }) .show(); } } }; // 初始化弹窗 popup.init(); popup.setPosition(showPosition); // 将popup对象挂载到window上,以便外部可以访问 window.popup = popup; }); } })();