一、input type=button 不做任何操作

    例如: <input type="button" class="btn btn-primary" style="width: 30%" value="返回" onclick="window.location.href='/users/list'"></input>

    onclick跳转到href对应值的URL本地地址

二、input type=submit 提交页面数据

    例如:<input type="submit" class="btn btn-primary" style="width: 30%;margin-left: 5%"></input>

    提交当前页面数据,常应用于form表单中

拓展资料:

    1.如果让本页转向新的页面则用:

        <input type=button onclick=”window.location.href(‘连接’)“>

    2.如果需要打开一个新的页面进行转向,则用:

        <input type=button onclick=”window.open(‘连接’)“>

        <input type=button value=刷新 onclick=”window.location.reload()“>

        <input type=button value=前进 onclick=”window.history.go(1)“>

        <input type=button value=刷新 onclick=”window.history.go(0)“>

        <input type=button value=后退 onclick=”window.history.go(-1)“>

        <input type=button value=前进 onclick=”window.history.forward()“>

        <input type=button value=后退 onclick=”window.history.back()“>

        <input type=button value=后退同时刷新 onclick=”window.history.go(-1);window.location.reload()“>

    3、点击按钮弹出确认alert窗口

        方式一:onclick="alert('是否确认提交?'); return false;"

        方式二:onclick="if (confirm('确认返回ma?')) window.location.href='/users/list'; return false;"

01-17 21:39