我想知道是否使用JavaScript通过http或https访问该页面.是否有某种isSecure()方法,或者我应该以某种方式将其解析出来?
location.protocol 应该为你做.
location.protocol
(如:
if (location.protocol === 'https:') { // page is secure }
)
你应该能够检查document.location.protocol它是"http:"还是"https:"
document.location.protocol