1

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");
      }
    }
  });
});
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 に答える