document.addEventListener('plusready', onPlusReady, false);
// 扩展API加载完毕,现在可以正常调用扩展API
function onPlusReady(){
plus.geolocation.getCurrentPosition(function(p){
alert('获取地址' + JSON.stringify(p.address.city));
}, function(e){
alert('Geolocation error: ' + e.message);
} );
}