当前位置: 代码迷 >> Java Web开发 >> 帮忙看看这句是什么意思.该怎么解决
  详细解决方案

帮忙看看这句是什么意思.该怎么解决

热度:7   发布时间:2016-04-17 15:35:40.0
帮忙看看这句是什么意思.
<script> top.window.main.location.href= "maildetail.jsp?select=xxx ";   </script>

这是javascript语句吗?   关键是top.window.main.location   看不懂?   它表示什么意思?

------解决方案--------------------
<script> top.window.main.location.href= "maildetail.jsp?select=xxx "; </script>

top:表示框架的最顶级
window.main:名为main的框架页
location.href= "maildetail.jsp?select=xxx "; : main框架页的当前地址。

  相关解决方案