history
go(n)
:n为正时向前n页,n为负时后退n页window.history.go(-2); // 返回上上页
window.history.go(-1); // 返回上一页
window.history.go(0); // 刷新当前页
window.history.go(1); // 前往下一页
history.back
是用来会退历史记录的,就是回到前一个页面,就相当于浏览器上的返回按钮window.history.back();
history.forword
是到下一个历史记录里面,也就是到下一个页面。window.history.forward();
pathname
、search
属性在HashRouter
路由模式下会失效,只能在BrowserRouter
路由模式下使用
http://test.csdn.com:3000/#/build_table?id=1
属性 | 值 | 说明 |
---|---|---|
location.portocol | http: | 页面使用的协议,通常是’http: ‘或’https: ’ |
location.hostname | test.csdn.com | 服务器域名 |
location.port | 3000 | 请求的端口号 |
location.host | test.csdn.com:3000 | 服务器名及端口号 |
location.origin | http://test.csdn.com:3000 | url的源地址,只读 |
location.href | 完整的url地址 | 等价于window.location |
location.pathname | / (这里指的是3000后面的/ ) |
url中的路径和文件名,不会返回hash和search后面的内容,只有当打开的页面是一个文件时才会生效 |
search
指的是端口号后面紧接着的?
号,而不是#
号后面的?
号)location.hash
:URL散列值(#
号之后的部分,包括#
号)location.search
:URL的查询字符串(?
号后面的部分,包括?
号)- url为:http://test.csdn.com:3000/#/build_table?id=1
console.log(location.hash) // "#/build_table?id=1"
console.log(location.search ) // ""
- url为:http://test.csdn.com:3000/?id=1#/build_table
console.log(location.hash) // "#/build_table"
console.log(location.search) // "?id=1#/build_table"
http://test.csdn.com:3000/#/build_table?id=1
location.hash = '#/cerate_table?id=2'
console.log(location.href) // http://test.csdn.com:3000/#/cerate_table?id=2
location.search= '?/id=2'
console.log(location.href) // http://test.csdn.com:3000/#/?id=2
http://foouser:[email protected]:80/HB/new_file2.html
属性 | 值 | 说明 |
---|---|---|
location.username | foouser | 域名前指定的用户名 |
location.password | barpassword | 域名前指定的密码 |
// 指定协议跳转
location.assign("http://www.baidu.com")
/* 等同于 */
location.href = "http://www.baidu.com"
// 以当前页面协议跳转
location.assign("//www.baidu.com")
/* 等同于 */
location.href = "//www.baidu.com"
// 重新加载,可能是从缓存加载
location.reload();
// 重新加载,从服务器加载
location.reload(true)
alert()
是在浏览器弹出一个提示框window.alert("我是一个提示框");
confirm()
是在浏览器弹出一个询问框var boo = window.confirm("我是一个询问框");
console.log(boo);
prompt()
是在浏览器弹出一个输入框var str = window.prompt("请输入内容");
console.log(str);
setTimeout(要执行的函数,多少时间以后执行);
var timerId = setTimeout(function (){
console.log('我执行了');
},1000);
console.log(timerId) // 1
关闭定时器:
clearTimeout
var timerId = setTimeout(function(){
console.log("倒计时定时器");
},1000);
clearTimeout(timerId); // 关闭倒计时定时器
clearTimeout
关闭setTimeout
,但是其实是可以通用的var timeId = setTimeout(function(){
console.log('倒计时定时器');
},1000);
// 关闭倒计时定时器
clearInterval(timerId);
定时器的返回值
setTimeout
和 setInterval
的var timerId = setTimeout(function(){
console.log('倒计时定时器');
},1000);
var timerId2 = setInterval(function(){
console.log("间隔定时器");
},1000);
console.log(timerId) // 1
console.log(timerId2) // 2
setInterval(要执行的函数,间隔多少时间);
var timerId = setInterval(function (){
console.log('我执行了');
},1000);
关闭定时器:
clearInterval
var timerId2 = setInterval(function(){
console.log("间隔定时器");
},1000);
cleatInterval(timeId2); // 关闭间隔定时器
clearInterval
关闭setInterval
,但是其实是可以通用的var timeId2 = setInterval(function(){
console.log('间隔定时器');
},1000);
// 关闭间隔定时器
clearTimeout(timerId2);
定时器的返回值
setTimeout
和 setInterval
的var timerId = setTimeout(function(){
console.log('倒计时定时器');
},1000);
var timerId2 = setInterval(function(){
console.log("间隔定时器");
},1000);
console.log(timerId) // 1
console.log(timerId2) // 2
open("url地址","_black或_self","新窗口的大小")
window.open("https://www.baidu.com/") // 打开百度
window.close() // 关闭
screenLeft
:表示窗口相对于屏幕左侧的位置,返回值的单位是像素值screenTop
:表示窗口相对于屏幕顶部的位置,返回值的单位是像素值console.log("screenLeft 位置:", window.screenLeft);
console.log("screenTop 位置:", window.screenTop);
依浏览器而定,以下方法可能会部分或全部禁用
moveTo
:接收要移动到的新位置的绝对坐标 x和ymoveBy
:接收相对当前位置在两个方向上移动的像素值// 把窗口移动到左上角
window.moveTo(0,0)
// 把窗口移动到坐标位置(200,300)
window.moveTo(200,300)
// 把窗口向下移动100像素
window.moveBy(0,100)
// 把窗口向左移动10像素
window.moveBy(-10,0)
console.log("innerWidth 宽度:",window.innerWidth);
// innerWidth 宽度: 1002
console.log("innerHeight 高度:",window.innerHeight);
// innerHeight 高度: 907
console.log("outerWidth 宽度:",window.outerWidth);
// outerWidth 宽度: 1680
console.log("outerHeight 高度:",window.outerHeight);
// outerHeight 高度: 1010
浏览器的 onscroll 事件
- 浏览器内的内容即然可以滚动,那么我们就可以获取到浏览器滚动的距离
- 思考一个问题?
- 浏览器真的滚动了吗?
- 其实我们的浏览器是没有滚动的,是一直在那里
- 滚动的是什么?是我们的页面
- 所以说,其实浏览器没有动,只不过是页面向上走了
window.onscroll = function(){
console.log('浏览器滚动了');
}
Safari 浏览器使用的是
window.pageXOffset
和window.pageYOffset
scrollX
:文档向右滚动的距离,当窗口无法展示整个页面,这时候就需要滚动查看。scrollY
:文档向下滚动的距离,当窗口无法展示整个页面,这时候就需要滚动查看。console.log("scrollX 向右滚动了多少距离:",window.scrollX);
// scrollX 向右滚动了多少距离: 0
console.log("scrollY 向下滚动了多少距离:",window.scrollY);
// scrollY 向下滚动了多少距离: 0
// 滚动到页面左上角
window.scrollTo(0,0)
// 滚动到页面左边100像素和顶部200像素的位置
window.scrollTo(100,200)
// 相对于当前视口向下滚动100像素
window.scrollBy(0,100)
// 相对于当前视口向右滚动40像素
window.scrollBy(40,0)
属性 | 描述 |
---|---|
screen.height | 获取整个屏幕的高 |
screen.width | 获取整个屏幕的宽 |
screen.availHeight | 整个屏幕的高减去系统部件的高( 可用的屏幕高度 ) |
screen.availWidth | 整个屏幕的宽减去系统部件的宽(可用的屏幕宽度 ) |
navigator
属性 | 描述 |
---|---|
navigator.userAgent | 获取浏览器的整体信息 |
navigator.appName | 获取浏览器名称 |
navigator.appVersion | 获取浏览器的版本号 |
navigator.platform | 获取当前计算机的操作系统 |