Removes the Internet Explorer cache mechanism and obtains the latest data from the server in real time.

Source: Internet
Author: User

Add the following code to the head of the HTML page:

<meta http-equiv="Pragma" content="no-cache">   <meta http-equiv="Cache-Control" content="no-cache"><meta http-equiv="Expires" content="0">

When Ajax sends a request, the URL keeps up with a timestamp.

   function convertURL(url){//这个方法返回毫秒级别的数据,可以说是唯一的        if(url){            var timeStamp = (new Date()).valueOf();            var tempArray  = url.split("?");            var tempArrayLength = tempArray.length;            if(tempArrayLength==2){                //将时间戳追加到url上面                url = url+ "&timeStamp=" +timeStamp;            }else if(tempArrayLength==1){                url = url+ "?timeStamp=" +timeStamp;            }            return url;        }    }


Removes the Internet Explorer cache mechanism and obtains the latest data from the server in real time.

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.