大家好我正在尝试显示等待消息,直到没有收到设备位置。我的代码是:
function getLocation()
{
navigator.geolocation.getCurrentPosition(onSuccess, onError);
}
我尝试了navigator.notification.activityStart()和loadingStart(),但它们无法正常工作。我正在尝试窗口。什么都没发生,我应该导入任何插件吗?
window.plugins.waitingDialog.show("Your dialog text");
有人可以帮助......
答案 0 :(得分:0)
这样的东西?
function getLocation()
{
//display your waiting message
document.getElementById('message').innerHTML = "waiting message";
navigator.geolocation.getCurrentPosition(onSuccess, onError);
}
function onSuccess()
{
document.getElementById('message').innerHTML = "success";
}
function onSuccess()
{
document.getElementById('message').innerHTML = "error";
}