الوسيطات خاصية
إرجاع the الوسيطات كائن for the currently executing Function كائن.
[function.]arguments
الوسيطات
- وظيفة
اختياري. The اسم of the currently executing Function كائن.
ملاحظات
The الوسيطات خاصية allows a دالة إلى مؤشر a متغير رقم of الوسيطات. The الطول خاصية of the الوسيطات كائن يحتوي على the رقم of الوسيطات passed إلى the دالة. The individual الوسيطات contained في the الوسيطات كائن can be accessed في the same way صفيفة عناصر are accessed.
ملاحظة
The الوسيطات كائن ليس متوفر when a برنامج هو تشغيل في fast الوضع, the الافتراضي for JScript. إلى يحول برمجياً a برنامج that uses the الوسيطات كائن من a الأمر تعجيل, you must turn إيقاف the fast خيار بواسطة using /fast-. It ليس آمن إلى turn إيقاف the fast خيار في ASP.NET because of threading issues. لمزيد من المعلومات، راجع الوسيطات الكائن.
مثال
يوضح المثال التالي استخدم خاصية الوسيطات.
function ArgTest()
{
var newline = "\n";
var s = "";
s += "The individual arguments are:"
s += newline
for (var n = 0; n < arguments.length; n++)
{
s += "argument " + n.toString();
s += " is "
s += ArgTest.arguments[n];
s += newline
}
return(s);
}
print(ArgTest(1, 2, "hello", new Date()));
إخراج th هو برنامج هو كما يلي:
The individual arguments are:
argument 0 is 1
argument 1 is 2
argument 2 is hello
argument 3 is Sat Jan 1 00:00:00 PST 2000