0

我有一个按钮,当点击时将新的 html 添加到文档中。如何检查新 html 中是否有特定元素?

我试过

  $(document).on('click', '#add-html-code', function() {

     if ($('#something').length > 0) { alert('yes'); }
 });

对其进行测试,但没有任何反应。谢谢

编辑:解决了。

4

1 回答 1

0
if ($('#element-to-which-the-html-was-added')
    .find('#element-you-are-looking-for').length) {
  alert('yes');
}
于 2013-07-23T17:06:44.217 回答