非標準
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 or Firefox OS for installed or higher privileged applications.
概要
enable
メソッドは、与えられた周波数でラジオを ON にするために使用します。
この関数は、引数なしで呼び出された場合、エラーを投げます。
このメソッドの呼び出しが成功した時に、毎回 enabled
イベントと frequencychange
イベントが発生します。
構文
var request = instanceOfFMRadio.enable(frequency);
引数
-
frenquency
- ラジオが受信する信号の周波数の値。
戻り値
命令の成功またはエラーを扱う DOMRequest
を返します。
例
var request = navigator.mozFMRadio.enable(100.0); request.onsuccess = function () { console.log("The radio is enable"); } request.onerror = function () { console.log("Something goes wrong!"); }
仕様書
仕様はありません。