Tag: jQuery的filter

jquery获取所有表单元素:input,textarea和select

有一个简单的方法(没有单独列出所有)在jQuery中select所有的表单元素,只有forms的元素。 我不能使用children()等,因为表单包含其他的HTML。 例如: $("form").each(function(){ $(this, "input, textarea, select"); });