//响应浏览器后退事件
$(window).on("popstate", function() {
//隐藏遮罩层
$(".modal-backdrop").hide();
//页面重新加载
window.location.reload();
});