我用这个谷歌工具来分析我的网站。
其结果告诉我如下:
**Leverage browser caching**
Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.
Leverage browser caching for the following cacheable r
我想要我的js文件的gmt日期。所以想知道我怎么能得到约会。我不想从电脑上得到日期,我想要正确的gmt日期使用js文件。
我想知道我怎么做的?
我需要使用jQuery还是什么的。
我需要在密码中匹配日期。
假设:
我有来自堆栈溢出的代码
var date = 11;
var month = 10;
var year = 2012
function Checkday() {
if ( !isExpired() ) {
start();
} else {
stop();
};
};
function isExpired() {
我使用了YSlow火狐插件,它返回以下结果:
添加过期标头的等级F
有8个静态组件没有一个遥远的未来到期日期.
* (no expires) http://localhost:63808/WebSite/css/Global.css?...
* (no expires) http://localhost:63808/WebSite/css/BemVindo.css?...
* (no expires) http://localhost:63808/WebSite/js/Global.js?...
* (no expires) http://localhost:63808/WebSite/js/
我包含了date.js (来自datejs.com)和en-IE文化信息脚本。
如果我调用alert(Date.CultureInfo.dateElementOrder),我会看到正确的dmy,但是如果我试图解释日期02/03/01,我得到的是3 Jan 2001,而不是2 Feb 2001。我不确定这是date.js中的错误还是我的问题。