URLが変更されるたびにメニューボタンの状態を更新しようとしています。次のコードはmouseleave
私のボタンにあります:
$(document).ready(function() {
$("#btnAdd, #btnEdit").mouseleave(function(event) {
ActivateMenuButton();
});
});
function ActivateMenuButton() {
var currentURL = window.location.pathname;
//alert(currentURL);
//deselect current selected button
$("#btnAdd, #btnEdit").removeClass("buttonSelected");
//select menu button according to URL
if (currentURL.indexOf('Add') >= 0) {
$("#btnAdd").addClass("buttonSelected");
}
if (currentURL.indexOf('Ddit') >= 0) {
$("#btnEdit").addClass("buttonSelected");
}
}
jQueryまたはjavescriptを使用して、ページが変更されたことを検出し、上記のコードを実行する方法はありますか?