下面的代码循环遍历 a 中的所有input
andselect
元素div
并检查该值是否为空,然后将其隐藏,它运行良好:
$("#customfields_1 :input").filter(function() {
return $.trim(this.value).length === 0;
}).hide();
但现在我真正想要的是隐藏以前的td
,像这样:
$("#customfields_1 :input").filter(function() {
return $.trim(this.value).length === 0;
}).prev('td').hide();