gpt4 book ai didi

javascript - 查找使用 jQuery 的选择器

转载 作者:数据小太阳 更新时间:2023-10-29 06:16:00 24 4
gpt4 key购买 nike

我正在制作一个 jQuery 插件,我想知道是否有一种方法可以找到用户用来应用该插件的选择器。例如,如果用户选择这个:

$(".myClass").pluginName();

然后插件会返回myClass,以后可以使用。我有办法做到这一点吗?

最佳答案

假设这是您的选择:

var $selection = $('a, i');

如果你想得到选择器,只需使用selector属性:

var selector = $selection.selector;

在这种情况下,selector 变量的值将是字符串 a, i


注意:

虽然 selector 属性包含在 jQuery 1.11.0 和 jQuery 2.1.3 中,但它似乎在 jQuery 3.0.0 alpha1 中缺失。这可能是为什么:

The .selector property was deprecated in jQuery 1.7 and is only maintained to the extent needed for supporting .live() in the jQuery Migrate plugin. It may be removed without notice in a future version.

source

如果您能想出一个很好的理由说明为什么这个功能应该保留在 jQuery 核心中,您可能想要向 jQuery 开发团队提出申诉并请求他们改变删除该功能的决定。

关于javascript - 查找使用 jQuery 的选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32525514/

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