jquery--获取同一个属性的多个input,和select

jquery获取同一个属性的多个input值


$("input[name='name']").each(function(index,item) {
   console.log(this.value)
   })

 

 

jquery获取同一个属性的多个select值
数据如:

 

{{ project_data.choiceSelect }}
# [{'verbose_name': 'age', 'options': ['11', '22', '33']}, {'verbose_name': 'name', 'options': ['zhangsan', 'li']}]
{% for choice in project_data.choiceSelect %}
    
class="form-group">
{% endfor %}

jquery--获取同一个属性的多个input,和select_第1张图片

 

 

var choice_options_list = new Array()
$(".choice_options").each(function(index,item) {
   choice_options_list.push(this.value)
})
   console.log(choice_options_list)

 

 

 

jquery点击增加同样的表单内容

// 添加日志输入框函数 var addLog = '' function add() { $(".logs").append(addLog) }

 

 

你可能感兴趣的:(jquery--获取同一个属性的多个input,和select)