LoginSignup
4
3

More than 5 years have passed since last update.

PhoneGap アプリかWebか判別

Posted at

概要

PhoneGap(Cordova)アプリでとWebブラウザの両方で提供をする場合、それを判別する

コード

アプリ化したときに組み込まれる cordva のオブジェクトがあるかどうかで判別する。
JavaScriptで、ondeviceready 発火後に以下のコードで判別できます。

if(typeof cordova==="undefined"){
    alert("web browser");
}else{
    alert("phonegap");
}

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3