JavaScript-How to disable browser caching or not allow a browser to generate records for a specific page

Source: Internet
Author: User

Do a game, there are multiple pages, the user in the game end page click "Back" will return to the beginning of the game page, how to let him can not click Back or click Back not to the previous page, or do not allow the browser to generate the corresponding page history, server-side or JS solution can be, first thanked.

Reply content:

Do a game, there are multiple pages, the user in the game end page click "Back" will return to the beginning of the game page, how to let him can not click Back or click Back not to the previous page, or do not allow the browser to generate the corresponding page history, server-side or JS solution can be, first thanked.

The simplest way to do this is not to return the JS event, but to jump directly to the actual URL and add nocache information to disallow browser caching.
There are two ways to control caching, output in header information and HTML

HTML: 
  
    
  
    
  
    
  
    ASP response.expires=0 response.addHeader("pragma","no-cache") response.addHeader("Cache-Control","no-store, must-revalidate") PHP header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Cache-Control: no-store, must-revalidate"); header("Pragma: no-cache"); JSP: response.addHeader("Cache-Control", "no-store, must-revalidate"); response.addHeader("Expires", "Thu, 01 Jan 1970 00:00:01 GMT");
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.