私が持っているタスクは、マークアップが
<div>
<div attributename="xyz" />
</div>
テストは true ですが、マークアップが
<div>
<div>
<div attributename="xyz" />
</div>
</div>
その場合、結果は false になるはずです。
これまでのところ、私は
$(":[attributename]",context);
しかし、それは両方のシナリオで true を返します