js禁止浏览器页面后退功能:
<script>
$(function(){
if(window.location.href.indexOf("/login") > -) {
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
}
});
</script>