toLocaleString أسلوب

تقوم بإرجاع قيمة قيمة سلسلة من الإعدادات المحلية الحالي لبيئة مضيف المناسب.

function toLocaleString() : String

ملاحظات

For the Array كائن, the عناصر of the صفيفة are محول إلى سلاسل و these سلاسل are concatenated و returned, each separated بواسطة the قائمة فاصل specified for the مضيف بيئة's الحالي إعدادات محلية.

For the Date كائن, the toLocaleString أسلوب إرجاع a String كائن that يحتوي على the التاريخ written في the الحالي إعدادات محلية's long الافتراضي تنسيق.

  • For dates between 1601 و 9999 A.D., the التاريخ هو منسق according إلى the مستخدم's لوحة التحكم Regional إعدادات.

  • For dates outside this range, the الافتراضي تنسيق of the toString أسلوب هو used.

For the رقم كائن, toLocaleString produces a سلسلة القيمة that represents the القيمة of the رقم منسق كـ appropriate for the مضيف بيئة's الحالي إعدادات محلية.

ل Objectالكائنات، من ToLocaleString هو المتوفر لإعطاء الجميع الكائنات عامة toLocaleStringالقدرة، حتى لو كانت قد لا يستخدم it.

ملاحظة

toLocaleStringيجب استخدامه فقط إلى عرض نتائج إلى مستخدم؛ فيجب عدم استخدامه كالاساس للحساب ضمن برنامج نصي كما الناتج الذي تم إرجاعه هو آلة-خاصة.

مثال

يوضح المثال التالي للعميل استخدم toLocaleStringاستخدام أسلوب Array، Date، رقم كائن.

function toLocaleStringArray() {
   // Populate an array with values.
   // Each value is the same as the index.
   var myArray = new Array();
   for(var i = 0; i <= 6; i++)
   {
      myArray[i] = i;
   }

   var s = myArray.toLocaleString();
   return(s);
}

function toLocaleStringDate() {
   var d = new Date();
   var s = d.toLocaleString();
   return(s);
}

function toLocaleStringNumber() {
   var n = Math.PI;
   var s = n.toLocaleString();
   return(s);
}

المتطلبات

Version 1

يتم تطبيق إلى:

كائن صفيفة| كائن التاريخ| كائن رقم| كائن كائن

راجع أيضًا:

موارد أخرى

الأساليب