我有这段代码:
parent.find('input, select, textarea').each(function () {
console.log($(this));
});
我想知道$(this)
是text / checkbox / radio / select / textarea
我怎样才能做到这一点?
感谢任何帮助
答案 0 :(得分:1)
您是否尝试过is
?
parent.find('input, select, textarea').each(function () {
if($(this).is('input')){
console.log('Input it is');
}
...
});