window.matchMedia() allow to listen to browser window size changes and trigger the callback for different media query size. let mql = window.matchMedia('(max-width: 600px)'); you can attach a listener to it: mql.addListener(() => console.log('changes…
javascript:window.history.forward(1);[转] 接下来我们要讨论的方法以后退按钮本身为中心,而不是浏览器缓存.这儿有一篇文章Rewiring the Back Button很值得参考.不过我注意到,如果使用这种方法,虽然用户点击一下后退按钮时他不会看到以前输入数据的页面,但只要点击两次就可以,这可不是我们希望的效果,因为很多时候,固执的用户总是能够找到绕过预防措施的办法. 另外一种禁用后退按钮的办法是用客户端JavaScript打开一个没有工具条的窗口,这使得用…
window.navigator 对象包含有关访问者浏览器的信息. Window Navigator window.navigator 对象在编写时可不使用 window 这个前缀. Navigator Object Properties Property Description appCodeName Returns the code name of the browser appName Returns the name of the browser appVersion Returns t…