如何在内部跳转和整个页面跳转:
下面这个top.location.href = "login.html";可以跳转整个页面。
$(function(){
$("#quit").click(quit);
})
function quit(){
var r=confirm("您确定要退出系统")
if (r==true)
{
top.location.href = "login.html";
}else{
alert("感谢你还回来");
}
}
下面这个window.location.href = "login.html";在自己的frame框架内部跳转。
$(function(){
$("#quit").click(quit);
})
function quit(){
var r=confirm("您确定要退出系统")
if (r==true)
{
window.location.href = "login.html";
}else{
alert("感谢你还回来");
}
}
如何跳转别的frame框架:
给frame上面起一个name;
<frame src="top.html" name="topFrame" />
跳转链接上面写一个 target属性指向要跳转的frame;
<a href="project-finance.html" target="topFrame"/>
这样点击链接就可以跳转值别的框架当中。