1.onclick跳转
设置window的location.href属性
onclick="window.location.href='URL'"
onclick="location='URL'"
2.调用window的open方法
onclick="window.open('URL','_blank');" // 在新窗口打开
onclick="window.open('URL','_self');" // 覆盖当前页
3.a标签跳转
<a href="URL" target="_blank">Preface</a> // 在新窗口打开
<a href="URL" target="_self">Preface</a> // 覆盖当前页,target属性默认为_self,此处可省略