gpt4 book ai didi

javascript - 如何在不知道页面中表单数量的情况下从表单数组中获取特定表单

转载 作者:行者123 更新时间:2023-11-30 17:17:44 24 4
gpt4 key购买 nike

我有一个包含多种表单的 html 页面:

forms1
forms2
forms3
forms4
.
.
.
formsn

在 JavaScript 中,我们知道我们可以通过表单数组处理特定表单:

document.forms[2]

但是在不知道表格个数的情况下如何得到n表格呢?

类似的东西:

n = numbnerOfForms
document.forms[n]
document.forms[n-1]

最佳答案

我认为 document.form.length 是您想要的。它返回数组的长度;在本例中为表单数组。

注意:如果和数组是:

a ['q','w','e','r','t','y']

array.lenght 返回 6,这在你需要通过 cicle via 数组时很有用

for (var i = 0; i < array.length; i++) {
// ...
}

关于javascript - 如何在不知道页面中表单数量的情况下从表单数组中获取特定表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25768277/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com