我正在尝试使用 jQuery 制作移动应用程序。我正在使用制作滑动面板,并且我有它的来源。来源是 .html .css 和 .js html 和 css 似乎可以工作,但 .js 不能。有什么答案吗?
它假设看起来像这样
它也在我的本地网络服务器上。
源代码:
.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");
}
}
});
});