[code=HTML<input type="button" name="back" class="STYLE4" onclick="window.location='index.php';"  value="返回">[/code]

解决方案 »

  1.   

    <input type="button" name="back" class="STYLE4" onclick="window.location='index.php';"  value="返回">
      

  2.   

    onclick="window.location='index.php';"  
      

  3.   

    <input type="button" name="back" class="STYLE4" onclick="location.replace('index.php');"  value="返回">
      

  4.   

    <input type="button" name="back" class="STYLE4" onclick="javascript:history.go(-1);"  value="返回">我这个可是最简单的解决方案呀,任何时候都适用。