我想问一下,如何在 phonegap 中运行恢复事件。我有 JQuery 代码,但我不知道如何在恢复期间运行此脚本。在 addEventListener 中写什么。感谢您的建议
function onLoad(){
document.addEventListener("deviceready", onDeviceReady, false);
}
function onDeviceReady(){
document.addEventListener("resume", ***WHAT TO WRITE HERE?*** , false);
}
$(document).ready(function(){
$("#firsttext").text("Something");
});