Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jquery 和 pjax 来加载页面,一切都很好,除了 pjax 向 url 添加了一些数字(应该是唯一的 ID,因为每次查询都会增加)。单击 pjax 链接后的示例 url:
http://localhost/mylink?_=1383575943800
我为这样的链接添加了 pjax 支持:
$(document).pjax('.box ul a', '#response');
如何删除那个 GET 变量“_”?谢谢
我找到了答案,我之前使用过 jquery ajax,所以我设置了 jquery ajax 缓存
$.ajaxSetup ({ 缓存: false });
我删除了这行代码,一切正常。但我还是不明白为什么。