luci-theme-argon icon indicating copy to clipboard operation
luci-theme-argon copied to clipboard

up.gif 无法加载,出现跨站请求提示

Open CallMeR opened this issue 3 years ago • 0 comments

查看源码如下:

<script type="text/javascript">//<![CDATA[
				if (document.location.protocol != 'https:') {
					var url = 'https://' + window.location.hostname + ':' + '<%=https_port%>' + window.location.pathname;
					var img = new Image;
					img.onload = function () { window.location = url };
					img.src = 'https://' + window.location.hostname + ':' + '<%=https_port%>' + '<%=resource%>/cbi/up.gif?' + Math.random();;
					setTimeout(function () {
						img.src = ''
					}, 5000);
				}
			//]]></script>

用 https 访问的话,这个gif 图也不知道显示在了哪里。。

CallMeR avatar Jan 25 '22 14:01 CallMeR