0

在 android phonegap 应用程序中,我需要使用 javascript 或 jquery 从 index1.html 获取 index2.html 的脚本。

这是 index1.html 代码:

   function nextpage(){

   $.get('index2.html', function(data) {
          $('#div').html(data);
          alert('Load was performed.');
        });
     }

      <input type="button" value="button1" onclick="nextpage()"/> 
      <div id="div"></div>

这是 index2.html 代码:

function return1()
     {
 alert("welcome to index2.html");
 var data={ "firstName": "John", "lastName": "Doe", "age": 25 };
     }

     <input type="button" value="welcome" onclick="return1()"/> 

从这段代码中,我从 index2.html 获得了“欢迎”按钮,并附加在 index1.html 的 #div 中。但是我需要在 #div 中附加 return1() 并需要获取警报(“欢迎使用 index2.html “)。这是html页面功能响应。如何做到这一点。请帮助我。提前谢谢。

4

1 回答 1

0

附加 index2.html 后,我将在您的代码中添加 return1() 函数。

function nextpage(){

   $.get('index2.html', function(data) {
          $('#div').html(data);
          alert('Load was performed.');

              return1(); //call this function to show alert

        });
     }
于 2012-10-05T11:14:35.930 回答