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.

MozMobileConnection.selectNetworkAutomatically

Diese Übersetzung ist unvollständig. Bitte helfen Sie, diesen Artikel aus dem Englischen zu übersetzen.

Kein Standard
Diese Funktion entspricht nicht dem Standard und ist nicht Teil der Standardisierung. Diese Funktion darf nicht in Webseiten, die via das Internet zugänglich sind, benutzt werden: Sie wird nicht für alle Nutzer funktionieren. Es kann zu umfangreichen Inkompatibilitäten zwischen verschiedenen Implementierungen kommen und die Funktionsweise oder Eigenschaften könnten in der Zukunft verändert werden.

This API is available on Firefox OS for internal applications only.

Summary

The selectNetworkAutomatically method is used to tell the radio to automatically select a network.

Note: If the network is actually changed by this request, the voicechange and datachange events are fired.

Syntax

var request = navigator.mozMobileConnection.selectNetworks();

Return

A DOMRequest object to handle the success or failure of the method call.

If the request fails, the request's error is one of:

  • RadioNotAvailable
  • RequestNotSupported
  • IllegalSIMorME
  • GenericFailure

Example

var switchNetwork = navigator.mozMobileConnection.selectNetworkAutomatically();

switchNetwork.onsuccess = function () {
  console.log('Successful switch');
}

switchNetwork.onerror = function () {
  console.log('Unable to switch: ' + this.error.name);
}

Specification

Not part of any specification.

See also

Schlagwörter des Dokuments und Mitwirkende

 Mitwirkende an dieser Seite: fscholz, [email protected]
 Zuletzt aktualisiert von: fscholz,