簡體   English   中英

帶有jQuery Mobile“ Hello World”的Phonegap無法正常工作

[英]Phonegap with jquery mobile “hello world” not working

只是試圖通過phonegap來使jquery移動觸發,但是我無法讓我的世界觸發。

所有對Js的引用都是正確的。

<!DOCTYPE html>
<html>
  <head>
  <title></title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />

    <meta charset="utf-8">
    <link rel="stylesheet" href="style.css" type="text/css" media="screen" charset="utf-8">

        <script type="text/javascript" charset="utf-8" src="phonegap-1.1.0.js"></script>
        <script type="text/javascript" charset="utf-8" src="jquery.js"></script>
        <script type="text/javascript" charset="utf-8" src="jquery_mobile.js"></script>


    <script type="text/javascript">
    document.addEventListener("deviceready", onDeviceReady, false);


    function onDeviceReady() {
      $(document).ready(function() {
         $(document).bind("deviceready", function(){
             navigator.notification.alert("hello world");
         });
      });
    }

    </script>
  </head>
  <body>

  </body>
</html>

嘗試這個:

<!DOCTYPE HTML>
<html>
  <head>
    <meta name="viewport" content="width=320; user-scalable=no" />
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
     <title>Hello With JQuery Mobile</title>
      <link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.0rc1.min.css" type="text/css" charset="utf-8" />
      <script type="text/javascript" src="jquery.mobile/jquery-1.6.4.min.js"></script>
      <script type="text/javascript" charset="utf-8" src="phonegap-1.1.0.js"></script>
      <script type="text/javascript" src="jquery.mobile/jquery.mobile-1.0rc1.min.js"></script>

    <script type="text/javascript">
        var onDeviceReady = function() {
            alert("OnDeviceReady fired.");
        };

        function init() {
            document.addEventListener("deviceready", onDeviceReady, true);
        }
    </script>

  </head>
  <body onload="init();">

  </body>
</html>

您是否在Xcode中的html和js ar中包含了參考?

您應該嘗試通過在html主體中放置一些內容來開始調試,並查看在編譯和運行時是否出現該內容。

嘗試像這樣刪除addEventListener和Function:

<script type="text/javascript">
    $(document).ready(function(){
        $(document).bind('deviceready', function(){
            navigator.notification.alert("hello world");
        });
    });
</script>

無需兩次收聽“ deviceready”。 該文檔將首先准備就緒,然后再准備JQM觸發設備。

希望對您有所幫助!

我有一個類似的問題。 注釋掉jquery或jquerymobile引用導致該應用程序正常工作,但我無法在標頭中同時使用它。 這兩個文件都位於phonegap的www文件夾中。 我什至嘗試從jquery.com引用代碼,但是沒有用。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM