生成される出力は次のとおりです。HTML
<div id="resultCancel" class="error" style="display: block;">
<a class="close">X</a>
<ul style="">
<li for="ProductId" generated="true" class="error" style="">Please Enter License Key</li>
</ul>
</div>
a.closeをクリックすると、liの内容を空にする必要があります(誰かが私を殺す前に、古いコードベースを使用しているため、.live関数を使用しています)
$('a.close').live('click',function(){
$(this).parent().fadeOut("fast");
$(this).closest//.next//.sibling('ul').addClass('foo');
});
最も近いものを使用することで、DOMツリーを上に移動でき、下に移動する必要があります。.nextと.siblingは効果がありません....重要な場合、div#resultCancelはjQuery検証プラグインによってトリガーされます。