1

我正在尝试使用 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");
      }
    }
  });
});
4

1 回答 1

0

您需要按以下顺序加载 JS 文件:

<script src="jquery.js"></script>
<script src="custom-scripting.js"></script>
<script src="jquery-mobile.js"></script>

参考:http: //jquerymobile.com/demos/1.0/docs/api/globalconfig.html

于 2013-08-26T22:00:17.020 回答