$(document).on("pagebeforeshow", function(event) {
$("#mybtn").on("click", function(e) {
$.mobile.showPageLoadingMsg();
$.mobile.changePage("twitter.html", {
reloadPage: false, changeHash: true,
});
$('#mybtn').unbind('');
});
});
你能告诉我为什么取消绑定在 Jquery mobile 中很重要吗?请告诉我取消绑定事件的最佳方法。我使用以下方式绑定和取消绑定事件。可以吗