您的位置:首页 > 其它

事件触发后的页面转向问题(原页面,新页面,刷新,前进,后退)

2012-07-26 08:50 204 查看
input Button 按钮,跳转链接,方法:

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.打开无边框的新窗口

<input type=”button” name=”Submit2″ value=”确 定” onclick=”javascript:(”,”,’width=720,height=500,resizable=yes,scrollbars=yes,status=no’)” />

4.点击按钮弹出确认alert窗口

方式一:

<input type=”button” name=”Submit1″ value=”确定”

onClick=”alert(‘是否确认提交?’);= ”;return false;” >

方式二:

<input type=”button” name=”Submit2″ value=”确定”

onClick=”if (confirm(‘是否确认提交?’))= ”;return false;” >
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: