本文介绍了jQuery获取所有表单元素:input,textarea和选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

jquery中是否有一种简便的方法(不将它们全部单独列出)来选择所有表单元素和仅表单元素.

Is there an easy way (without listing them all separately) in jquery to select all form elements and only form elements.

我不能使用children()等,因为表单包含其他HTML.

I can't use children() etc because the form contains other HTML.

例如:

$("form").each(function(){
    $(this, "input, textarea, select");
});

推荐答案

这篇关于jQuery获取所有表单元素:input,textarea和选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 08:32