我想通過使用參數[i]循環所有函數參數值來簡化電子郵件驗證,但返回「undefined」。如何獲取函數參數值?
function checkInputRequired(companyNameValue, contactNameValue, publisherEmailValue, publisherEmailConfirmValue)
{
// The arguments object is an Array-like object corresponding to the arguments passed to a function.
for (var i = 0; i < arguments.length; i++)
{
// print out 4 undefined
console.log(arguments[i]);
}
}
您正在測試哪個參數?不要告訴我,你不提供任何參數... – Xufox