代码如下,即可判断
1 var ishttps = 'https:' == document.location.protocol ? true : false; 2 3 if(ishttps) { 4 5 alert("这是一个https请求"); 6 7 } else { 8 9 alert("http"); 10 11 }
代码如下,即可判断
1 var ishttps = 'https:' == document.location.protocol ? true : false; 2 3 if(ishttps) { 4 5 alert("这是一个https请求"); 6 7 } else { 8 9 alert("http"); 10 11 }