在JavaScript中,你可以通过window.location对象来获取当前页面的URL,并从中解析出协议部分(例如,http或https)。下面是一个简单的示例:
// 获取当前页面的完整URL
var currentURL = window.location.href;
// 使用URL API解析URL
var urlObject = new URL(currentURL);
// 获取协议部分(例如:http: 或 https:)
var protocol = urlObject.protocol;
console.log(protocol); // 输出可能是 “http:” 或 “https:”