jQuery - 运行函数的选择器

发布于 2024-12-21 18:03:25 字数 211 浏览 0 评论 0原文

我如何使用以下代码在具有 .p11button 类(也具有 display:block)的任何 div 上运行函数?

if (VARIABLE = true) {
    $('div .p11-button').css('display') == 'block'
    FUNCTION HERE
}

How would I use the following code to run a function on any div with the class of .p11button which also has display:block?

if (VARIABLE = true) {
    $('div .p11-button').css('display') == 'block'
    FUNCTION HERE
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

拍不死你 2024-12-28 18:03:25

尝试以下操作:

if (VARIABLE) {
  $('div.p11-button').filter(function() {
   return $(this).css('display' === 'block');
  }).each(function() {
    var self = $(this);
    //FUNCTION HERE
  });
}

在您的代码示例中,您在条件中将变量分配为 true - 这将始终评估为 true!另外,选择器中的空格意味着您将选择具有 p11-button 类的 div 的后代。

Try the following:

if (VARIABLE) {
  $('div.p11-button').filter(function() {
   return $(this).css('display' === 'block');
  }).each(function() {
    var self = $(this);
    //FUNCTION HERE
  });
}

In your code example you were assigning variable to true in the condition - this would always evaluate to true! Also, the space in your selector means you will select descendents of divs with class p11-button.

拧巴小姐 2024-12-28 18:03:25

您可以使用方括号按属性选择元素:

$('div.p11-button[style*="display:block"]').css('color', 'red');

这是一个演示:http://jsfiddle.net/2uE4s/

这将选择具有 p11-button 类的所有 div 元素,并在其样式属性中包含 display:block (仅出于示例目的,我然后更改CSS所有选定元素的 color 属性,以表明您不需要 .each())。

以下是 jQuery 选择器的文档: http://api.jquery.com/category/selectors/< /a>

You can select elements by their attributes using square brackets:

$('div.p11-button[style*="display:block"]').css('color', 'red');

Here is a demo: http://jsfiddle.net/2uE4s/

This will select all div elements with the p11-button class and include display:block in their style attribute (just for example purposes I then change the CSS color property for all the selected elements to show that you don't need an .each()).

Here is the documentation for selectors in jQuery: http://api.jquery.com/category/selectors/

我偏爱纯白色 2024-12-28 18:03:25

像这样的东西吗?

$('div .p11-button').filter('[style*=display:block]').each(/*function*/);

Something like this?

$('div .p11-button').filter('[style*=display:block]').each(/*function*/);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文