如何检查td中是否有选择框
if(there is select box inside td){
alert('yes');
}else{
alert('no');
}
我怎样才能做到这一点?
提前致谢。
答案 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
}