gpt4 book ai didi

javascript - queryselector 和 jquery 查找?

转载 作者:行者123 更新时间:2023-11-29 21:00:48 26 4
gpt4 key购买 nike

我有一个查询选择器

var thumbnail = file.previewElement.querySelector(".dz-image .image img");

我已经编写了 jquery 来查找相同的元素

 var thumbnail2= previewElementForm.find(".dz-image .image img");

当我执行两者的 console.log 时,我得到相同的元素,但返回类型似乎不同。

这两个有什么区别?我可以将 thumbnail2 的类型转换为 thumbnail1 的类型吗?

最佳答案

what is the difference between these 2?

.querySelector() 返回单个 DOM 元素。 jQuery.fn.find() 可以返回多个 jQuery 对象。

can I convert type of thumbnail2 to type of thumbnail1?

您可以在 .find() 之后使用括号 [index].get(index) 来获取 DOM 传递索引处的元素,其中 index 是从 0document 中定义的元素数减去 的数字1

关于javascript - queryselector 和 jquery 查找?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46598972/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com