blob: 188e4cb87e06af1c7f061689c0b8e9715df761f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
---
title: NavigatorPlugins.javaEnabled()
slug: Web/API/NavigatorPlugins/javaEnabled
tags:
- API
- Method
- Reference
translation_of: 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>
|