我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
The HTMLFormElement.length
read-only property returns the number of controls in the <form>
element.
Syntax
integer = form.length
Example
if (document.getElementById("form1").length > 1) { // more than one form control here }