Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用电子商务网站,用户可以在其中使用类别、子类别、品牌和产品等过滤器进行导航。所以流程是
product.php?catid=1&subcatid=11&brandid=12&prodid=111
现在的问题是,当我点击浏览器的后退按钮时,它要求确认表单重新提交。但我想要的是,它应该直接进入品牌过滤器。我的意思是
product.php?catid=1&subcatid=11&brandid=12
任何形式的帮助都非常感谢。
避免使用 POST 方法提交表单,而使用 GET 方法。如果需要 POST 方法,请使用以下方法之一。
防止表单重新提交
有办法解决这个问题...
使用 GET 而不是 POST 方法...
使用阿贾克斯..