文章摘要:js怎么辨别https
使用JavaScript对https进行判断,具体方法如下: var ishttps = 'https:' = […]
使用JavaScript对https进行判断,具体方法如下:
var ishttps = 'https:' == document.location.protocol ? true: false;
if(ishttps){
alert("这是一个https请求");
}else{
alert(“这是一个http请求”);
}
文章摘要:js怎么辨别https
使用JavaScript对https进行判断,具体方法如下: var ishttps = 'https:' = […]
使用JavaScript对https进行判断,具体方法如下:
var ishttps = 'https:' == document.location.protocol ? true: false;
if(ishttps){
alert("这是一个https请求");
}else{
alert(“这是一个http请求”);
}