也有可能是浏览器本身对于http和https的证书验证拦截,并非bug。
以下为https在大部分浏览器标识。
部分浏览器会因以下原因阻止页面的重定向。
如果想跳转到指定网址,可以这样:document.querySelectorAll("div#buttons button")[3].onclick=function(){location.href='指定的网址'}
如果想禁止跳转,可以这样:
document.querySelectorAll("div#buttons button")[3].onclick=function(){return false}
或者
document.querySelectorAll("div#buttons button")[3].onclick=null