0

我使用 pg-plugin-screen-orientation :https://github.com/their/pg-plugin-screen-orientation

如何在 phonegap 中检查手机和平板电脑之间的设备平台以设置屏幕方向?

我用煎茶触摸开发

4

1 回答 1

0

你可以通过这个:http ://try.sencha.com/touch/2.2.0/demos/Ext.os.is/viewer.html

如果您想检查设备类型,可以使用以下内容:

if(Ext.os.is.Phone)
{
    console.log('Phone');
}
else if(Ext.os.is.Tablet)
{
    console.log('Tablet');
}
else
{
    console.log('Others');
} 

更多关于这个:

http://docs.sencha.com/touch/2.2.1/#!/api/Ext.os

于 2013-08-25T06:36:10.167 回答