-1
登錄後,如果我點擊瀏覽器的按鈕,然後我想通過將它指向使用jquery的php頁面來銷燬會話。如何使用jquery點擊瀏覽器的後退按鈕來銷燬會話
這是我的jquery代碼,它適用於Mozilla。但不能在chrome上工作。我想要獨立於瀏覽器。
在此先感謝。
<script>
$(document).ready(function(){
if (typeof history.pushState === "function") {
history.pushState("bbs", null, null);
window.onpopstate = function() {
history.pushState('newbbs', null, null);
};
$(location).attr('href','backbuttonsessiondeactivation.php');
}
});
</script>
這裏是我的backbuttonsessiondeactivation.php內容:
<?php
session_start();
extract($_REQUEST);
session_destroy();
header("Location:login.php");
?>
我怎麼能做到這一點?
http://stackoverflow.com/questions/13098802/remove-session-with-jquery – caramba 2014-10-28 13:12:56