Phonegap web app in regular desktop browsers

前端 未结 18 1936
深忆病人
深忆病人 2020-12-08 02:27

If I develop a web app in phonegap, can the same web app be made to run in regular desktops/laptops inside a browser?

18条回答
  •  一个人的身影
    2020-12-08 02:49

    It will definitely run on desktop, IF you do it in right way.

    I do this with many of my apps,But it`s good to wrap your device specific event listeners like:

    onDeviceReady: function()  {
    
          // Your Code  for Device event listner
    
        },false);
    

    And initialize the function

    document.addEventListener("deviceready", onDeviceReady, false);
    

提交回复
热议问题