返回到:JavaScript对象:JavaScript Location 对象
定义和用法
protocol 属性是一个可读可写的字符串,可设置或返回当前 URL 的协议。
语法
location.protocol
所有主要浏览器都支持 protocol 属性
实例
返回当前URL的协议部分:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> </head> <body> <script> document.write(location.protocol); </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/brtips/3528.html