我想要这样的东西
但这不起作用。
最佳答案
如果将newDiv
用作jQuery对象,然后使用find()
,则可以在其中获取其他元素。
$(newDiv).find(".myclass h4");
堆栈片段
var data = "<div class='myclass'><h4>hello</h4></div>"
var newDiv = document.createElement("div");
newDiv.innerHTML = data;
var List = $(newDiv).find(".myclass h4");
console.log( $(List).html() );
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
关于javascript - 通过类名获取元素,并从另一个元素进行查询,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51255852/