是否可以在客户端检测用户是否使用加密页面?
换句话说 - 我想知道当前页面的URL是以http还是https开头.
使用window.location.protocol
来检查它是否https:
function isSecure() { return window.location.protocol == 'https:'; }
或者,如果您没有本地范围的位置,则可以省略指定"窗口".
function isSecure() { return location.protocol == 'https:'; }
谷歌分析师告诉我:
if ("https:" == document.location.protocol) { /* secure */ } else { /* unsecure */ }