HTML点击按钮button跳转页面的几种实现方法
大家好,又见面了,我是你们的朋友全栈君。
其实我比较喜欢第一种方法
<button onclick="window.location.href='../routeEdit/index.html'" type="button" id="add">新增</button>
正文
方法一 :在button标签中加上onclick属性,赋值为Javascript
<input type="button" onclick='location.href=("index.aspx")' />//在本页面打开
<input type="button" onclick='window.open("bedzhao.aspx")' />//打开新页面
<button onclick="window.location.href='../routeEdit/index.html'" type="button" id="add">新增</button>
方法二 :触发一个函数跳转
<script>
function jump(){
window.location.href="http://blog.sina.com.cn/mleavs";