标签:
修改easyui datagrid内容保存后,使用$("#dg").datagrid("reload");或者$("#dg").datagrid("load");时,IE总是读取缓存内容,,下面提供三种方案:
1、URL加时间戳,很麻烦,每次请求都要加
2、datagrid method改为POST方式
3、设置ajax不缓存,$.ajaxSetup({ cache: false });//不设置缓存
个人觉得第三种完美解决。。
标签:
原文地址:http://www.cnblogs.com/mybky/p/4905095.html