How can I refresh a page with jQuery?
问题 How can I refresh a page with jQuery? 回答1: Use location.reload(): $('#something').click(function() { location.reload(); }); The reload() function takes an optional parameter that can be set to true to force a reload from the server rather than the cache. The parameter defaults to false , so by default the page may reload from the browser's cache. 回答2: This should work on all browsers even without jQuery: location.reload(); 回答3: There are multiple unlimited ways to refresh a page with