Ответ 1
Используйте нижеприведенный код для push-уведомления PhoneGap
window.LocalNotification.add({
message : "hello",
ticker : "New Notification",
repeatDaily : false,
id : 4
}, newNotification);
function newNotification(e) {
if (e != null && e.event == "newLocalNotification") {
// add my Appointment page
window.location = "#redirectPageId";
}
}
Используйте "redirectPageId" для страницы перенаправления