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 中,我执行一个 select 语句来获取一堆 img 标签。但是,我如何真正获得可以与画布的 drawImage 函数一起使用的每个对象的对象?通常有效的是文档通过 id 获取元素。
谢谢。
你可以通过写来获取对象 $(this)
$(this)
例如:
$("img").each(function() { console.log($(this).prop("src")); });
在 一堆 img 标签上的循环旁边。