目录

window location.protocol

示例

返回当前 URL 的协议:

let protocol = location.protocol;
亲自试一试 »

描述

protocol 属性设置或返回当前 URL 的协议,包括冒号 (:)。

该协议是指定数据如何在计算机之间传输的标准。


语法

返回协议属性:

location.protocol

设置协议属性:

location.protocol = protocol

适当的值

Parameter Description
protocol The protocol of the URL. Examples:
  • file:
  • ftp:
  • http:
  • https:
  • mailto:

返回值

类型 描述
一个字符串 当前 URL 的协议,包括冒号 (:)

浏览器支持

location.protocol所有浏览器都支持:

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes