使用 jQuery 循环选择标签

发布于 2024-11-09 00:26:40 字数 661 浏览 0 评论 0原文

我正在尝试使用多选循环遍历 select 标签。我是 jQuery 新手,我发现了这段代码,但是我需要循环遍历所有 option 标签,检查是否选择了 option,因为我需要在这两种情况下都做某事。

$('.multiselect').change(function () {
  $('.multiselect option:selected').each(function () {
    //do something
  });
}).trigger('change');

我试图把它变成这样:

$('.multiselect').change(function () {
  $('.multiselect').each(function () {
    $('option', this).each(function() {
      if ('option':selected == true) {
        //do something
      }
      else {
        //do something else
      }
    });
  });
}).trigger('change');

但这不起作用。有人可以建议一个好的方法吗?

I'm trying to loop through a select tag, with multiselect. I'm new to jQuery and I found this code, however I need to loop through all of the option tags, checking whether the option is selected or not, as I need to do something in both cases.

$('.multiselect').change(function () {
  $('.multiselect option:selected').each(function () {
    //do something
  });
}).trigger('change');

I was trying to make it into something more like this:

$('.multiselect').change(function () {
  $('.multiselect').each(function () {
    $('option', this).each(function() {
      if ('option':selected == true) {
        //do something
      }
      else {
        //do something else
      }
    });
  });
}).trigger('change');

But this doesn't work. Can someone suggest a good approach?

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

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

发布评论

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

评论(2

雨的味道风的声音 2024-11-16 00:26:40
$(".multiselect").change(function() {
    $("option", this).each(function() {
        if(this.selected) {
             // This one is checked
        } else {
             // This one is not checked
        }
    }
});

我认为应该有效。

$(".multiselect").change(function() {
    $("option", this).each(function() {
        if(this.selected) {
             // This one is checked
        } else {
             // This one is not checked
        }
    }
});

Should work, I think.

木森分化 2024-11-16 00:26:40
$(".multiselect").change(function () {    
  $(".multiselect option").each(function(){  
    if($(this).attr("selected") == "true"){  
      // do something  
    } else {
      // do something else
    }
  }
}

应该工作..

$(".multiselect").change(function () {    
  $(".multiselect option").each(function(){  
    if($(this).attr("selected") == "true"){  
      // do something  
    } else {
      // do something else
    }
  }
}

should work..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文