diff options
Diffstat (limited to 'files/ja/web/api/domrequest/index.html')
-rw-r--r-- | files/ja/web/api/domrequest/index.html | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/files/ja/web/api/domrequest/index.html b/files/ja/web/api/domrequest/index.html deleted file mode 100644 index 0e6ef466a3..0000000000 --- a/files/ja/web/api/domrequest/index.html +++ /dev/null @@ -1,102 +0,0 @@ ---- -title: DOMRequest -slug: Web/API/DOMRequest -tags: - - DOM - - Gecko DOM Reference -translation_of: Archive/B2G_OS/API/DOMRequest ---- -<div> - {{ApiRef}}</div> -<p><code>DOMRequest</code> オブジェクトは、進行中の操作を表します。操作の完了時に呼び出されるコールバックと、操作結果への参照を提供します。 進行中の操作を開始する DOM メソッドは、その操作の進行状況の監視に使用できる <code>DOMRequest</code> オブジェクトを返すことがあります。</p> -<h2 id="Attributes" name="Attributes">属性</h2> -<dl> - <dt> - {{ domxref("DOMRequest.onsuccess") }}</dt> - <dd> - <code>DOMRequest</code> によって表される、操作の完了時に呼び出されるコールバックハンドラ</dd> - <dt> - {{ domxref("DOMRequest.onerror") }}</dt> - <dd> - 操作の処理中にエラーが発生したときに呼び出されるコールバックハンドラ</dd> - <dt> - {{ domxref("DOMRequest.readyState") }}</dt> - <dd> - 操作が完了しているか否かを示す <a href="/ja/docs/JavaScript/Reference/Global_Objects/String" title="JavaScript/Reference/Global_Objects/String"><code>string</code></a>。値は "done" もしくは "pending" の何れか。</dd> - <dt> - {{ domxref("DOMRequest.result") }}</dt> - <dd> - 操作結果</dd> - <dt> - {{ domxref("DOMRequest.error") }}</dt> - <dd> - エラー情報(※存在する場合)</dd> -</dl> -<h2 id="Example" name="Example">例</h2> -<p>{{domxref("App")}} の <code>onsuccess</code>、 <code>onerror</code>、 <code>result</code>、 <code>error</code> の使用例</p> -<pre class="brush: js">var pending = navigator.mozApps.install(manifestUrl); - -pending.onsuccess = function () { - // Save the App object that is returned - var appRecord = this.result; - alert('Installation successful!') -}; - -pending.onerror = function () { - // Display the name of the error - alert('Install failed, error: ' + this.error.name); -};</pre> -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2> -<p>{{ CompatibilityTable }}</p> -<div id="compat-desktop"> - <table class="compat-table"> - <tbody> - <tr> - <th>機能</th> - <th>Chrome</th> - <th>Firefox (Gecko)</th> - <th>Internet Explorer</th> - <th>Opera</th> - <th>Safari</th> - </tr> - <tr> - <td>基本サポート</td> - <td>{{ CompatUnknown }}</td> - <td>{{ CompatGeckoDesktop("13.0") }}</td> - <td>{{ CompatUnknown }}</td> - <td>{{ CompatUnknown }}</td> - <td>{{ CompatUnknown }}</td> - </tr> - </tbody> - </table> -</div> -<div id="compat-mobile"> - <table class="compat-table"> - <tbody> - <tr> - <th>機能</th> - <th>Android</th> - <th>Chrome for Android</th> - <th>Firefox Mobile (Gecko)</th> - <th>IE Mobile</th> - <th>Opera Mobile</th> - <th>Safari Mobile</th> - </tr> - <tr> - <td>基本サポート</td> - <td>{{ CompatUnknown }}</td> - <td>{{ CompatUnknown }}</td> - <td>{{ CompatGeckoMobile("13.0") }}</td> - <td>{{ CompatUnknown }}</td> - <td>{{ CompatUnknown }}</td> - <td>{{ CompatUnknown }}</td> - </tr> - </tbody> - </table> -</div> -<h2 id="Specification" name="Specification">仕様</h2> -<p>どの仕様書にも含まれていません。</p> -<h2 id="See_also" name="See_also">関連情報</h2> -<ul> - <li><a href="/ja/docs/DOM/SmsRequest">SmsRequest</a> {{non-standard_inline}} ※現・<code>DOMRequest</code></li> -</ul> |