是否可以使用JavaScript确定HTTP协议版本?我需要检测用户是否正在使用HTTP / 2协议(如果是这种情况,请祝贺他)。
答案 0 :(得分:1)
目前仅适用于Chrome,但很快就会推出其他浏览器。
console.log(performance.getEntries()[0].nextHopProtocol)
答案 1 :(得分:-1)
if (location.protocol == "http/2"){
alert('congratulations!');
}