js和jquery实现页面跳转的几种方式

js跳转方式 一、在原有的页面跳转html window.location.href='b.html' 二、在原有的页面返回上一个页面web window.history.back(-1) 三、在原有的页面跳转到b页面(只适用于ie)svg window.navigate('b.html') 四、跳转到b页面code self.location.href='b.html' 从字面上就能够理解到 w
相关文章
相关标签/搜索