gpt4 book ai didi

jquery - 检查输入是否为文本框、选择、文本区域或单选

转载 作者:行者123 更新时间:2023-12-03 22:23:14 26 4
gpt4 key购买 nike

我有一个带有不同 html 输入字段的表单...

1) <input type="text">
2) <textarea></textarea>
3) <input type="checkbox">
4) <input type="radio">
5) <select></select>

我如何能够使用 jQuery 确定输入字段的类型。 例如:如果我想检查 input =“select”,然后执行操作。

最佳答案

$('input') // selects all types of inputs
$('input:checkbox') // selects checkboxes
$('select') // selects select element
$('input:radio') // selects radio inputs
$('input[type="text"]') // selects text inputs

您可以使用event.target.type,这会提醒inputtextreaselect的类型是事件的目标。

$('input, textarea, select').change(function(event){
alert(event.target.type)
})

http://jsfiddle.net/Q4BNH/

关于jquery - 检查输入是否为文本框、选择、文本区域或单选,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11215598/

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