【location对象的方法,history对象,navigator--BOM】

location对象的方法

    location.assign()//跟href一样,可以跳转页面(也称重定向页面)

    location.replace()//替换当前页面,因为不记录历史,所以不能后退页面

    location.reload()//重新加载页面,相当于刷新按钮或者f5如果参数为true强制刷新ctrl+f5

navigator.userAgent可以判断使用是那种浏览器(手机|电脑)

history对象

history.forward()//前进

history.back()//后退

history.go(参数)//前进后退功能,参数是1前进1个页面,如果是-1后退一个页面

你可能感兴趣的:(html,前端)