在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的'welcome'按钮并附加在index1.html的#div中。我需要在#div中附加return1()并需要获取警告(“欢迎光临index2.html“)。这是html页面功能响应。怎么做。请帮帮我。谢谢。
答案 0 :(得分: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
});
}