如何选择逆选择

发布于 2024-09-18 21:18:57 字数 344 浏览 5 评论 0原文

我成功选择了

    的第一个

我想选择除当前选定的

  • 之外的其余
  • 。即,(逆)。
  • 我该如何选择它?

    根据要求编辑

    var newEle = $(str); //str contains a <li> i.e., <li>Some content</li>
    $(newEle).hide();
    

    I am successful in selecting the first <li> of the <ul>.

    I want to select the remaining of the <li> except the current selected <li> . i.e., (inverse).

    How can I select it?

    Edited as per request

    var newEle = $(str); //str contains a <li> i.e., <li>Some content</li>
    $(newEle).hide();
    

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

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

    发布评论

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

    评论(3

    护你周全 2024-09-25 21:19:35

    您是否需要这样的东西:

    <ul id='myUL'>
      <li>One</li>
      <li>Two</li>
      <li>Three</li>
    </ul>
    

    jquery

    $('ul#myUL > li').each(function(index) {
         if( index !=  '0'){
              alert(index + ': ' + $(this).text());
         }
    });
    

    检查

    Do you need something like this:

    <ul id='myUL'>
      <li>One</li>
      <li>Two</li>
      <li>Three</li>
    </ul>
    

    jquery

    $('ul#myUL > li').each(function(index) {
         if( index !=  '0'){
              alert(index + ': ' + $(this).text());
         }
    });
    

    Check

    誰ツ都不明白 2024-09-25 21:19:23

    假设您在数组中选择的结果,您可以使用 jQuery 方法 pop()splice(begin,end) 来选择您想要的元素。两者都记录在此处(就在“布尔默认值”标题之前)。

    Assuming the result of your selection in an Array you can use the jQuery methods pop() or splice(begin,end) to select the elements you want. Both are documented here (right before "Boolean default" headline).

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