frameset跳出框架-自动跳转

来源:互联网 发布:数据挖掘常用方法 编辑:程序博客网 时间:2024/05/29 03:30

frameset跳出框架-自动跳转

<script>
var msg="${msg}";
alert(msg);
if (window.top!=window.self){  
   window.top.location="${pageUrl}";  
}else{
window.location.href="${pageUrl}";
}
</script>



0 0