gpt4 book ai didi

jquery - 使用 jQuery 在当前集合中查找元素

转载 作者:行者123 更新时间:2023-12-01 04:54:20 24 4
gpt4 key购买 nike

我正在制作一个 jQuery 插件,如何在当前集合中找到 .selected 元素?

$('a').selected(); // initial set `a`

$.fn.selected = function() {

return $('.selected', this);
// produces `a .selected` but I want to find `a.selected`

}

最佳答案

您应该使用.filter()相反:

return this.filter('.selected');

... jQuery 原型(prototype)扩展函数中的 this ($.fn.selected,在您的情况下)指的是 jQuery 对象本身。

关于jquery - 使用 jQuery 在当前集合中查找元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15791351/

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