非標準
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.
概要
seekUp
メソッドは、次に高い周波数のラジオチャンネルを探索するために使用します。周波数の上限に到達すると、低い周波数から折り返して検索されます。
周波数の変更が成功すると、frequencychange
イベントが発生します。
探索は一度に一回だけが許可されます。seekUp
が呼び出されラジオがすでに探索中である場合、要求は失敗します。
構文
var request = instanceOfFMRadio.seekUp();
戻り値
命令の成功またはエラーを扱う DOMRequest
を返します。
例
var request = navigator.mozFMRadio.seekUp(); request.onsuccess = function () { console.log("Searching..."); } request.onerror = function () { console.log("I guess we are already seeking."); }
仕様書
仕様はありません。