在动态生成的列表中选择列表元素

发布于 2024-11-06 04:12:56 字数 1959 浏览 0 评论 0原文

 <div id="carat_weight_right" style="margin-top: 15px;float:left;width:444px;border-width:1px 0px 1px 0 ;border-style:solid; border-color:#327B84;padding-top:10px;padding-bottom:33px;*padding-bottom:59px;">

 <fieldset style="padding-left:20px;padding-bottom:10px;width:415px;margin-top:3px;font-size;10px;">

   <--- start auto gen  using js / java third party tool for sliders using the filament slider tool ---->
  <ol class="ui-slider-scale ui-helper-reset" role="presentation">
  <li style="left:0.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -11.5px; ">FAIR</span><span class="ui-slider-tic ui-widget-content" style="display: none;"></span></li>
  <li style="left:25.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -15.5px; ">GOOD</span><span class="ui-slider-tic ui-widget-content"></span></li>
  <li style="left:50.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -15.5px; ">VERY GOOD</span><span class="ui-slider-tic ui-widget-content"></span></li>
  <li style="left:75.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -15px; ">IDEAL</span><span class="ui-slider-tic ui-widget-content"></span></li>
  <li style="left:100.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -30px; ">SIGNATURE IDEAL</span><span class="ui-slider-tic ui-widget-content" style="display: none;"></span></li></ol>


  <--- end auto genereted list ---->

  </fieldset>
  </div>

我想做的是能够选择这个 < li style="left:100.00%" >并更改上面的跨度样式< li style="left:100.00%" > ?

我如何选择特定的 < li style="left:100.00%" >且跨度在< li style="left:100.00%" >使用jquery?

谢谢

 <div id="carat_weight_right" style="margin-top: 15px;float:left;width:444px;border-width:1px 0px 1px 0 ;border-style:solid; border-color:#327B84;padding-top:10px;padding-bottom:33px;*padding-bottom:59px;">

 <fieldset style="padding-left:20px;padding-bottom:10px;width:415px;margin-top:3px;font-size;10px;">

   <--- start auto gen  using js / java third party tool for sliders using the filament slider tool ---->
  <ol class="ui-slider-scale ui-helper-reset" role="presentation">
  <li style="left:0.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -11.5px; ">FAIR</span><span class="ui-slider-tic ui-widget-content" style="display: none;"></span></li>
  <li style="left:25.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -15.5px; ">GOOD</span><span class="ui-slider-tic ui-widget-content"></span></li>
  <li style="left:50.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -15.5px; ">VERY GOOD</span><span class="ui-slider-tic ui-widget-content"></span></li>
  <li style="left:75.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -15px; ">IDEAL</span><span class="ui-slider-tic ui-widget-content"></span></li>
  <li style="left:100.00%"><span class="ui-slider-label ui-slider-label-show" style="margin-left: -30px; ">SIGNATURE IDEAL</span><span class="ui-slider-tic ui-widget-content" style="display: none;"></span></li></ol>


  <--- end auto genereted list ---->

  </fieldset>
  </div>

what i would like to do is to be able to select this < li style="left:100.00%" > and change the span style within the above < li style="left:100.00%" > ?

how can i select the particular < li style="left:100.00%" > and span within the < li style="left:100.00%" > using jquery ?

thanks

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

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

发布评论

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

评论(3

π浅易 2024-11-13 04:12:56

css 会截断小数点。

$('li').css('left', function(index, value) {
    if (value === '100%') {
        $(this).children('span').css(''); //Do what you wish here
    }
});

The css truncates the decimal points.

$('li').css('left', function(index, value) {
    if (value === '100%') {
        $(this).children('span').css(''); //Do what you wish here
    }
});
把人绕傻吧 2024-11-13 04:12:56

如果它始终是最后一个,如发布的代码中所示,您可以执行以下操作:

var theLI = $("ul.ui-slider-scale > li:last")

获取 li.然后要获得跨度,您可以这样做:

theLI.find("span")

获得跨度。 (注意:如果您只需要跨度,则可以将它们组合起来)

编辑:如果您不能依赖它是最后一个,则需要像这样循环它们:

$("ul.ui-slider-scale > li").each(function(){
    if($(this).css("left")==="100%"){
        // do your thing, 'this' is your li
    }
});

If it is always the last one, as in the posted code, you can do something like this:

var theLI = $("ul.ui-slider-scale > li:last")

to get the li. Then to get the span within you can do this:

theLI.find("span")

to get the span. (Note: if you only need the span, these can be combined)

EDIT: if you can't rely on it being last, you'll need to loop through them like so:

$("ul.ui-slider-scale > li").each(function(){
    if($(this).css("left")==="100%"){
        // do your thing, 'this' is your li
    }
});
不奢求什么 2024-11-13 04:12:56
$('li').filter(function(){
   return $(this).css("left") == "100%";
}).find('span').css("background-color","red");

看看这个演示

$('li').filter(function(){
   return $(this).css("left") == "100%";
}).find('span').css("background-color","red");

Take look at this Demo

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