license: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
Ottenere l'identificatore di stringa per la lingua corrente del client.
navigator.globalization.getPreferredLanguage(successCallback, errorCallback);
Restituisce la stringa di identificatore di lingua per i successCallback con un properties oggetto come parametro. Tale oggetto dovrebbe avere una value proprietà con un String valore.
Se c‘è un errore nell’acquisizione della lingua, poi la errorCallback viene eseguita con un GlobalizationError oggetto come parametro. Previsto codice dell'errore èGlobalizationError.UNKNOWN\_ERROR.
Quando il browser è impostato per la en\_US locale, questo dovrebbe visualizzare una finestra di dialogo pop-up con il testo language: English :
navigator.globalization.getPreferredLanguage(
function (language) {alert('language: ' + language.value + '\n');},
function () {alert('Error getting language\n');}
);
<!DOCTYPE HTML>
<html>
<head>
<title>getPreferredLanguage Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
function checkLanguage() {
navigator.globalization.getPreferredLanguage(
function (language) {alert('language: ' + language.value + '\n');},
function () {alert('Error getting language\n');}
);
}
</script>
</head>
<body>
<button onclick="checkLanguage()">Click for language</button>
</body>
</html>