diff options
author | MDN <actions@users.noreply.github.com> | 2021-07-09 00:38:08 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-07-09 00:38:08 +0000 |
commit | 235c34993c7b14f783fc8259cc237ac09f0d3e57 (patch) | |
tree | 7bee1bfcdc5216423bb76a12842eb60c169b0b04 /files/ja/orphaned/web/api/navigatorplugins/javaenabled | |
parent | 635bcdc09c53e3c497a3ff8eb958ca8eb541c7fd (diff) | |
download | translated-content-235c34993c7b14f783fc8259cc237ac09f0d3e57.tar.gz translated-content-235c34993c7b14f783fc8259cc237ac09f0d3e57.tar.bz2 translated-content-235c34993c7b14f783fc8259cc237ac09f0d3e57.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ja/orphaned/web/api/navigatorplugins/javaenabled')
-rw-r--r-- | files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html b/files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html new file mode 100644 index 0000000000..9b47d74b9c --- /dev/null +++ b/files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html @@ -0,0 +1,48 @@ +--- +title: NavigatorPlugins.javaEnabled() +slug: orphaned/Web/API/NavigatorPlugins/javaEnabled +tags: + - API + - Method + - Reference +translation_of: Web/API/NavigatorPlugins/javaEnabled +original_slug: Web/API/NavigatorPlugins/javaEnabled +--- +<p>{{ APIRef("HTML DOM") }}</p> + +<p>このメソッドは常に false を返します。</p> + +<h2 id="Syntax">構文</h2> + +<pre class="eval"><em>result</em> = window.navigator.javaEnabled() +</pre> + +<h2 id="Example">例</h2> + +<pre class="eval">if (window.navigator.javaEnabled()) { + // コードは実行されることはありません。条件は常に false になります。 +} +</pre> + +<h2 id="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('HTML WHATWG', '#dom-navigator-javaenabled', 'NavigatorPlugins.javaEnabled')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("api.NavigatorPlugins.javaEnabled")}}</p> |