有时我们需要判断用户请求是http还是https,来做一些操作。这时可以使用下面的方法来判断
<script> //protocol 属性是一个可读可写的字符串,可设置或返回当前 URL 的协议,所有主要浏览器都支持 protocol 属性 var ishttps = 'https:' == document.location.protocol ? true: false; if(ishttps){ console.log('http') }else{ console.log('http') } </script>
文章评论(0)