<input type="button" value="bbb" onClick="location.reload()">

解决方案 »

  1.   

    <input type="button" value="bbb" onClick="location=location">利用重定向也可以啊。
      

  2.   

    将form的method设为post,action值设成本页面的文件名称。在点击按钮的时候,调用一个javascript函数,将form提交,就可以完成。并且还可以设定一些参数,达到信息刷新,分页显示就可以这么做,每次刷新前更改页号,从数据库中取出不同的数据用来显示。
      

  3.   

    <input type="button" value="refresh" onclick="window.location.reload()">
      

  4.   

    <input type="button" value="bbb" onClick="location.reload()">
      

  5.   

    <%response.sendRedirect("../你需要进入的网页");%>
    这是服务端的代码,客户端按照楼上说的做就已经可以了