Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个基本的 jQuery 问题。我从一个字符串中得到一个 jquery 对象:
var o = $(html_in_string)
在这个 jquery 对象中,有一个我想要访问的元素。如果我有那个元素的 id,我怎么能做到这一点?
如果我理解正确的话,html_in_string是一个包含 html 的字符串。在这种情况下,您可以使用find().
html_in_string
find()
var o = $(html_in_string).find("#some-id")