timezone()
更新日: 2018-09-04
timezone()
// 使い方
chance.timezone()
タイムゾーンをランダムに返します。
chance.timezone();
=> {
"name": "India Standard Time",
"abbr": "IST",
"offset": 5.5,
"isdst": false,
"text": "(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi",
"utc": ["Asia/Calcutta"]
}
デモ
ボタンを押すと、タイムゾーンオブジェクトランダムに表示します。
結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
var chance = new Chance(),
timezone = chance.timezone(),
result = document.getElementById('result'),
ul, li;
ul = document.createElement('ul');
Object.keys(timezone).forEach(function(i) {
li = document.createElement('li');
li.textContent = timezone[i];
ul.appendChild(li);
});
if (result.firstChild !== null) {
result.removeChild(result.firstChild);
}
result.appendChild(ul);
}, false);
HTML
<button id="get-result">結果表示</button>
<div>
<span>結果:</span>
<span id="result"></span>
</div>
© 2015 Victor Quinn Released under the MIT license
このコンテンツはVictor Quinn(victorquinn)によるChanceドキュメントを翻訳/改変したものです。