如何使用JavaScript实现 按钮跳转页面功能?

JavaScript018

如何使用JavaScript实现 按钮跳转页面功能?,第1张

javascript中的location.href有很多种用法,主要如下:

self.location.href="/url" 当前页面打开URL页面

location.href="/url" 当前页面打开URL页面

windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同

this.location.href="/url" 当前页面打开URL页面

parent.location.href="/url" 在父页面打开新页面

top.location.href="/url" 在顶层页面打开新页面

如果想跳转到指定网址,可以这样:

document.querySelectorAll("div#buttons button")[3].onclick=function(){location.href='指定的网址'}

如果想禁止跳转,可以这样:

document.querySelectorAll("div#buttons button")[3].onclick=function(){return false}

或者

document.querySelectorAll("div#buttons button")[3].onclick=null

<input   type=button   value=click   onclick="window.location='你要转向的页面'">

<input   type="button"   value="返回"   onclick="window.location.href='你要转向的页面'">

<input   type="button"   value="返回"   onclick=javascript:location.href='你要转向的页面'>