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 element = $("#element");
但是我怎样才能从上面的 JQuery 对象中获取 HTML DOM 元素呢?
从 jQuery 对象中获取第一项
var element = $("#element")[0];
您可以使用get (link to API)。
element.get()
它将返回一个数组。