我想在加载脚本时禁用时间戳,因为它总是在文件 URL 之后的查询字符串中包含时间戳。请看一下你会知道的图像。
我还使用选项设置了 Ajax cache: true
。看这里的代码:``js $.ajax({ url: url data: {}, type: 'post', cache: true, dataType: 'json', success: function (data, status) { //something here } });
and also I have set meta tag to the header of the HTML.
```html
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Pragma" content="Public">
<meta http-equiv="Cache-control" content="public">
<meta name="keywords" content="something">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
我正在使用 jQuery v1.7.2