帮忙看看这句是什么意思.
<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框架页的当前地址。