You can use .load()
or $.ajax()
in PhoneGap applications. Most of my experience is with getting information from the same domain under which the app. is packaged. For example:
App. package identifier:
com.my-domain.my-app
Website domain for ajax calls:
www.my-domain.com
I just did a simple test in an iPhone emulator (via Xcode) and I was able to get the contents of a personal web domain as well as http://www.google.com/. Test was as follows:
$(document).ready(function () {
$.get('http://www.google.com/', function (data) {
alert(data);
});
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…