>  기사  >  웹 프론트엔드  >  브라우저가 돌아가고 메시지가 팝업되는 시기를 결정하는 jquery 메서드

브라우저가 돌아가고 메시지가 팝업되는 시기를 결정하는 jquery 메서드

WBOY
WBOY원래의
2016-05-16 16:39:551033검색

브라우저가 돌아갈 때 메시지가 있어야 합니다. 여기서는 jquery를 사용하여 브라우저가 돌아갈 때를 결정하고 메시지를 표시합니다

jQuery(document).ready(function ($) {
if (window.history && window.history.pushState) {
$(window).on('popstate', function () {
var hashLocation = location.hash;
var hashSplit = hashLocation.split("#!/");
var hashName = hashSplit[1];
if (hashName !== '') {
var hash = window.location.hash;
if (hash === '') {
alert("Back button isn't supported. You are leaving this application on next clicking the back button");
}
}
});
window.history.pushState('forward', null, './#forward');
}
});

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.