JQuery和Phonegap恢复活动

时间:2013-08-14 11:32:23

标签: jquery ios cordova

我想问一下,如何在phonegap中运行resume事件。我有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");
    }); 

1 个答案:

答案 0 :(得分:1)

您需要向callback事件监听器注册resume函数。

function onDeviceReady(){
      document.addEventListener("resume", callbackFunction , false);
    }

    function callbackFunction () {
     //This function will be called when the resume event is triggered
    }

在这种情况下,当resume事件被触发时,将调用callbackFunction,这是您通常会重新加载已保存变量等的地方。