📅  最后修改于: 2023-12-03 15:01:39.625000             🧑  作者: Mango
在 Web 开发中,了解和操作当前文档的 URL 是很重要的。location
对象提供了一系列属性,可以通过它来获取、设置和操作浏览器的 URL 信息。
其中,location.protocol
属性主要用于获取或设置当前文档的协议部分。
// 获取协议部分
var protocol = window.location.protocol;
// 设置协议部分
window.location.protocol = newProtocol;
protocol
:用于设置文档新的协议部分。值为字符串类型,必须是有效的 URL 协议(例如:http、https、ftp 等)。// 获取当前文档的协议部分,返回 "http:" 或 "https:"
var currentProtocol = window.location.protocol;
// 修改当前文档的协议部分为 https
window.location.protocol = "https:";
// 修改当前文档的协议部分为 http
window.location.protocol = "http:";
以上就是 location.protocol
属性的相关介绍,希望对你有所帮助!