你应该能够使用window.history.pushState和popstate实现这一点(见下面的示例)。
有关兼容性,请参阅this
有关完整文档,请参阅this
jQuery(document).ready(function ($) {
if (window.history && window.history.pushState) {
window.history.pushState('forward', null, null);
$(window).on('popstate', function () {
//Add logic here
});
}
});