因为是双语版 所以不能用  location="../html/help.html" 这个方式需要一种 JS 后退 的那种  要兼容 IE6 7 FF2 3

解决方案 »

  1.   

    昨天我看见js可以模拟浏览器的前进后退,今天再去baidu给你,你自己也搜搜"js 前进后退"等关键字!兼容么! 自己试试哈~没研究过!<html xmlns="http://www.w3.org/1999/xhtml" >  
    <head>  
    <title>无标题页</title>  
    <mce:script language="javascript"><!--   
    function back()   
    {   
    history.go(-1); //后退1页   
    }   
    function forward()   
    {   
    history.go(+1); //前进1页   
    }   
    function refresh()   
    {   
    history.go(-0) //刷新   
    }   
    // --></mce:script>  
    </head>  
      
    <body>  
        <input type=button value=后退 onclick="back()">  
        <input type=button value=刷新 onclick="refresh()">  
        <input type=button value=前进 onclick="forward()">  
    </body>  
    </html>  本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/Arthur0088/archive/2010/01/07/5147843.aspx
      

  2.   

    <INPUT TYPE="BUTTON" ONCLICK="JAVASCRIPT:HISTORY.GO(-1);VOID(0)"