我有一个按钮,当点击时将新的 html 添加到文档中。如何检查新 html 中是否有特定元素?
我试过
$(document).on('click', '#add-html-code', function() {
if ($('#something').length > 0) { alert('yes'); }
});
对其进行测试,但没有任何反应。谢谢
编辑:解决了。
我有一个按钮,当点击时将新的 html 添加到文档中。如何检查新 html 中是否有特定元素?
我试过
$(document).on('click', '#add-html-code', function() {
if ($('#something').length > 0) { alert('yes'); }
});
对其进行测试,但没有任何反应。谢谢
编辑:解决了。