0

这是我的 index.html 页面

<!DOCTYPE html>
<html>
<head>

 <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" />
 <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>

  <title>PhoneGap WP7</title>

     <link rel="stylesheet" href="master.css" type="text/css" media="screen" title="no title" charset="utf-8"/>

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

     <script src="js/jquery.js"></script>
    <script src="js/jquery.selectBox.js"></script>
    <script src="js/jquery.selectBox.min.js"></script>

   <script src="js/new.js"></script>
   <script>
       function come()
      {
          navigator.notification.alert("not coming");

          $("#new").html("hello");
         $("#need").load("new.html", function(){
        navigator.notification.alert("Done!");
        });

     }

   </script>
 </head>
 <body>
     <h1>Hello PhoneGap</h1>

     <div id="new">asdsd</div>
    <div id="hello">It is want to gone</div>
    <div id="need"></div>

   <input type="button" value="here" onclick="come()" />
 </body>
</html>


**My new.html page is**

 <html>
 <body>
 <h2>New one</h2>
 <p id="hello">Why it is not coming to here is it any problem<p>
 </body>
  </html>

在这里,我想将这个 new.html 加载到 index.html 中的我需要的 id 中,但是加载功能不起作用,我尝试了上面的方法,它在加载功能中显示了警报框,但没有显示 new.html 的内容在 Windows 手机中。我不明白确切的问题是什么。我怀疑windows phone 是否支持phonegap 中的load() 函数。所以请大家给点建议。

4

1 回答 1

0

你错过"了 o 之后的$("#hello)

尝试将您的 jquery 行包装在.ready()方法中:

$(document).ready(function() {
    $("#new").html("hello world");
    $("#hello").load("new.html");
});
于 2012-11-08T04:59:29.840 回答