Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLIFrameElement.getVisible

非標準
This feature is not on a current W3C standards track, but it is supported on the Firefox OS platform. Although implementations may change in the future and it is not supported widely across browsers, it is suitable for use in code dedicated to Firefox OS apps.

This API is available on Firefox OS for privileged or certified applications only.

概要

getVisible メソッドは、 <iframe> 要素の現在の可視状態の取得に用います。

構文

instanceOfDOMRequest = instanceOfHTMLIframeElement.getVisible();

Return

リクエストの成功とエラーを処理するために DOMRequest オブジェクトを返します。要求が成功した場合、リクエストの result はブラウザ <iframe> の可視状態を示す真偽値となります。

var browser = document.querySelector("iframe[mozbrowser]");
var request = browser.getVisible();

request.onsuccess = function () {
  console.log("The visible state is: " + this.result ? "true" : "false");
}

仕様

どの仕様書にも含まれていません。

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, ethertank
 最終更新者: ethertank,