gpt4 book ai didi

jquery - 如何识别 child 输入类型

转载 作者:行者123 更新时间:2023-12-01 03:53:01 25 4
gpt4 key购买 nike

基本上我有几个div,每个div都包含一个问题。这个问题可以通过单一输入、单选按钮或复选框来呈现。

我想在循环 div 时确定输入类型是什么。

以下代码无法实现此目的,只是想演示我想要实现的目标。

$(".question").each(function(){

var type = $(this).children('input').attr("type").val();
alert(type);
});

最佳答案

删除 val():

  var type = $(this).children('input').attr("type");

例如

  $(document).ready(function(){
$('button').click(function(){$(".question").each(function(){

var type = $(this).children('input').attr("type");
alert(type);
});
});
});


<div class="question">
<input type="radio">hello</input>
</div>

<div class="question">
<input type="checkbox">hello</input>
</div>

<div class="question">
<input type='text' name='response[4][answer]'></input>
</div>

<button>Click</button>

关于jquery - 如何识别 child 输入类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6153298/

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