{hero}

i18n.minutes

自:DateTime 1.0.0 起

分鐘選擇的標籤。
請注意 - 此屬性需要 DataTables 的 DateTime 擴充套件。

描述

此值用作 DateTime 中分鐘值的選擇旁邊的標籤。

類型

字串

描述

用於指示分鐘選擇的標籤的字串值。

預設值

  • 值:'Minute'

範例

變更 i18n.minutes 的值

$(document).ready(function () {
	new DateTime(document.getElementById('test'), {
		format: 'HH:mm',
		i18n: {
			minutes: 'm'
		}
	});
});