我已经使用phonegap 为android 开发了一个应用程序。我正在使用 XMLHttpRequest 加载外部 HTML 页面。它工作正常,但加载外部页面需要时间。如何减少页面加载时间?我的代码如下:
function loadHtmlPage(url){ //url - holds the name of the HTML page
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState === 4){
document.getElementById("externalpagecont").innerHTML = xmlhttp.responseText;
};
xmlhttp.open("GET", url , true);
xmlhttp.send(null);
}