jQueryを使ってモバイルアプリを作ろうとしています。スワイプパネルを作成するために使用していますが、そのソースがあります。ソースは .html .css および .js で、html と css は機能しているように見えますが、.js は機能しません。答えはありますか?
このように見えるはずです
また、ローカル Web サーバー上にあります。
ソースコード:
.js
$(document).on("pageinit", "#demo-page", function () {
$(document).on("swipeleft swiperight", "#demo-page", function (e) {
// We check if there is no open panel on the page because otherwise
// a swipe to close the left panel would also open the right panel (and v.v.).
// We do this by checking the data that the framework stores on the page element (panel: open).
if ($.mobile.activePage.jqmData("panel") !== "open") {
if (e.type === "swipeleft") {
$("#right-panel").panel("open");
}
else if (e.type === "swiperight") {
$("#left-panel").panel("open");
}
}
});
});