我正在尝试提高我的 jQuery 性能,我注意到它在 Chrome 中的运行速度比在其他浏览器中更快。当它只是对 PHP 文件的 AJAX 调用时是否有意义?
为了测试它,我在一个click
事件中这样做:
var startTime = new Date();
$.post("http://"+ document.domain + "action.json", { data: data},
function(dat){
console.log('ending: ', (new Date() - startTime) / 1000);
}
});
以秒为单位的结果是:
- 铬 25: 0.148
- 火狐 19.0.2: 0.212
- Internet Explorer 9: 0.272
- 歌剧 12.14: 0.219
访问每个浏览器上的控制台的开发工具会干扰此结果吗?
谢谢。