windowsTablet()

更新日: 2018-09-14

is.windowsTablet()

現在の端末がWindowsタブレットかどうかを判定します。

インターフェース:
not
is.windowsTablet();
=> 端末がWindowsタブレットならtrueを返します。

is.not.windowsTablet();
=> 端末がWindowsタブレットでないならtrueを返します。

デモ

端末を判定してconsole.logを出力します。

JavaScript
if (is.windowsTablet()) {
  console.log('使用している端末はWindowsタブレット端末です。');
} else {
  console.log('使用している端末はWindowsタブレット端末ではありません。');
}


© 2014-2016 Aras Atasaygin Released under the MIT license

このコンテンツはAras Atasaygin(arasatasaygin)によるis.jsドキュメントを翻訳/改変したものです。