Cordova device pluginは、デバイスのハードウェアとソフトウェアを表すグローバルデバイスオブジェクトを定義します。このオブジェクトはグローバルなスコープにありますが、オブジェクトが削除されるまでは使用できません。
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
// Android: Nexus One returns "Passion" (Nexus One code name)
// Motorola Droid returns "voles"
// BlackBerry: Torch 9800 returns "9800"
// Browser: Google Chrome returns "Chrome"
// Safari returns "Safari"
// iOS: for the iPad Mini, returns iPad2,5; iPhone 5 is iPhone 5,1. See http://theiphonewiki.com/wiki/index.php?title=Models
// OSX: returns "x86_64"
//
var model = device.model;
// Depending on the device, a few examples are:
// - "Android"
// - "BlackBerry 10"
// - "browser"
// - "iOS"
// - "WinCE"
// - "Tizen"
// - "Mac OS X"
var devicePlatform = device.platform;
}
ドキュメントをよく読み、慎重にすべての情報を示してください。
https://stackoverflow.com/questions/11604929/phonegap-display-available-free-space – Phonolog