如何知道它是否是select / textbox / radio / checkbox?

时间:2015-04-15 08:49:05

标签: javascript jquery html html5

我有这段代码:

parent.find('input, select, textarea').each(function () {
        console.log($(this));           
});

我想知道$(this)text / checkbox / radio / select / textarea

我怎样才能做到这一点?

感谢任何帮助

1 个答案:

答案 0 :(得分:1)

您是否尝试过is

parent.find('input, select, textarea').each(function () {
        if($(this).is('input')){
          console.log('Input it is');           
        } 
        ...            
});

http://api.jquery.com/is/