Questions tagged «window.location»


13
检测HTTP或HTTPS,然后在JavaScript中强制HTTPS
有什么方法可以检测HTTP或HTTPS,然后通过JavaScript强制使用HTTPS? 我有一些用于检测HTTP或HTTPS的代码,但是我不能强迫它使用https:。 我正在使用window.location.protocol属性设置站点的任何内容,https:然后刷新页面以希望将新的httpsed URL重新加载到浏览器中。 if (window.location.protocol != "https:") { window.location.protocol = "https:"; window.location.reload(); }




9
window.location与仅位置
在网络上,我看到大量的JavaScript程序员在写作,window.location而不仅仅是location。我很好奇是否有人可以解释原因。window是全局对象,因此没有必要包含-是吗?我的意思是,您看不到别人写window.Math.floor或new window.Date(),所以我很好奇为什么要用来指定location。 我知道这location被认为是您所在窗口的“属性”,我认为这是有道理的。但是即使这样,我也看不到指定全局对象的任何理由。location首先,除非没有重定向页面,否则就无法覆盖。 那么,这仅仅是已经使用了很长时间的怪癖,它已经与我们编写JavaScript的方式融为一体,还是有明显的理由要这样做呢?我检查了Google,可惜我什么都没想到...
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.