在td内选择框

时间:2014-04-09 15:16:12

标签: jquery find

如何检查td中是否有选择框

if(there is select box inside td){
alert('yes');
}else{
alert('no');
} 

我怎样才能做到这一点?

提前致谢。

2 个答案:

答案 0 :(得分:0)

尝试

if ($('td select').length) { // or el.find('select').length; in case of cached selector
    alert('yes');
    $('td:has("select")').remove('select'); //to remove select
} else {
    alert('no');
}

答案 1 :(得分:0)

使用:

if($('td select').length){
   //select exists
}