0

我想问一下,如何在 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");
    }); 
4

1 回答 1

1

您需要向恢复事件侦听器注册一个回调函数。

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

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

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

于 2013-08-14T11:34:41.263 回答