Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表格,我想知道表格中输入的数量。
我正在尝试像这样访问它:
alert($(this).parents("form").(':input').size());
从表单中的按钮单击调用此函数的位置,.parents()用于从页面获取正确的表单,我需要一个处理程序来处理输入,例如使用$('input').size()但用于特定表单。
.parents()
$('input').size()
有谁可以帮我离开这里吗?
要计算该form元素中的输入数量,您可以执行以下操作:
form
$(this).parents("form").find('input').length
参考:
$(this).parents("form:input").length
尝试这个:
alert($(this).parents('form :input').length);