转载链接 js页面跳转大全
常规的js页面跳转代码
1. 在原来的窗体中跳转
window.location.href = "url";
2. 在新窗体中打开页面
window.open("url");
3. js页面跳转设置参数
window.open ('page.html', 'newwindow', 'height=100, width=400, top=0,left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')
window.open 弹出新窗口的命令;
'page.html' 弹出窗口的文件名;
'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空'代替;
height=100 窗口高度;
width=500 窗口宽度;
top=0 窗口距离屏幕上方的象素值;
left=0 窗口距离屏幕左侧的象素值。
4. 返回上一页面
window.history.back(-1);
网友评论