我的页面有多个放置在其中的表单,<li>
我为它们分配了一个唯一 ID,然后在我的 jquery 中我感到疲倦并且在继续查找属于该 ID 的 dom 时使代码混乱。像下面
var id = $(this).parent().closest('li').attr('id');
var $formID = ('#' + id);
$form.find('foo').addClass('bar');
.find('foox').hide('barx');
.find('fooy').etc('bary');
.find('fooz').etc('barz');
etc.....
知道我可以让代码看起来更好吗?