我想使用 DOMNodeInserted 获取动态生成的 DOM 中的项目值。这是我的代码。@我想要获取值的项目是 li 例如
<div id="demo">
<ul>
<li class="req">Chemistry</li>
<li class="req">English</li>
<li class="req">Maths</li>
</ul>
</div>
这是代码
$('#demo').on('DOMNodeInserted', function(e) {
var that = $(this);
if ($(e.target).is('.req')) {
alert(oneoftheitemsintheli);
}
});
我想了解li
例如Maths
等中的项目Chemistry
。我需要知道如何获取这些项目。谢谢