我在堆棧溢出中發現了很多相關的東西,但不適用於我的情況。檢查元素是否包含jQuery中的另一個元素
這一切都在這個例子中,我需要檢查一個元素是否包含另一個元素,如果是,請追加一些東西。
$(".bt_repondre").click(function(){
comment = $(this).parent().parent().parent();
//I want to check if comment containa a .comment_full element, if no, append.
comment.append('add');
});
希望你能幫助我,我試過很多東西...
@ Jean-François你真的應該看看Blender的回答!它比這個簡潔一點 – ksoo
PS:不要使用'.parent()。parent()。parent()'。使用'.closest(「)。someSelector「) –