<i id='WDXM9'><tr id='WDXM9'><dt id='WDXM9'><q id='WDXM9'><span id='WDXM9'><b id='WDXM9'><form id='WDXM9'><ins id='WDXM9'></ins><ul id='WDXM9'></ul><sub id='WDXM9'></sub></form><legend id='WDXM9'></legend><bdo id='WDXM9'><pre id='WDXM9'><center id='WDXM9'></center></pre></bdo></b><th id='WDXM9'></th></span></q></dt></tr></i><div id='WDXM9'><tfoot id='WDXM9'></tfoot><dl id='WDXM9'><fieldset id='WDXM9'></fieldset></dl></div>
  • <tfoot id='WDXM9'></tfoot>
      <legend id='WDXM9'><style id='WDXM9'><dir id='WDXM9'><q id='WDXM9'></q></dir></style></legend>

        <bdo id='WDXM9'></bdo><ul id='WDXM9'></ul>

    1. <small id='WDXM9'></small><noframes id='WDXM9'>

        JQueryUI 滑块 - 当前位置的工具提示

        时间:2024-04-19
        • <i id='Houx8'><tr id='Houx8'><dt id='Houx8'><q id='Houx8'><span id='Houx8'><b id='Houx8'><form id='Houx8'><ins id='Houx8'></ins><ul id='Houx8'></ul><sub id='Houx8'></sub></form><legend id='Houx8'></legend><bdo id='Houx8'><pre id='Houx8'><center id='Houx8'></center></pre></bdo></b><th id='Houx8'></th></span></q></dt></tr></i><div id='Houx8'><tfoot id='Houx8'></tfoot><dl id='Houx8'><fieldset id='Houx8'></fieldset></dl></div>
        • <small id='Houx8'></small><noframes id='Houx8'>

            <tfoot id='Houx8'></tfoot>

              1. <legend id='Houx8'><style id='Houx8'><dir id='Houx8'><q id='Houx8'></q></dir></style></legend>
                  <tbody id='Houx8'></tbody>

                  <bdo id='Houx8'></bdo><ul id='Houx8'></ul>
                  本文介绍了JQueryUI 滑块 - 当前位置的工具提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  目前我有一个滑块和一个小的输入文本框,它会根据您在其上滚动的位置进行更新.

                  At the moment I have a slider and an small input text box which updates based on where you scroll on it.

                  这里是javascript:

                  Here is the javascript:

                  $("#slider").slider({
                      value: 500,
                      min: 0,
                      max: 1000,
                      step: 50,
                      slide: function(event, ui) {
                          $("#budget").val(ui.value);
                      },
                      change: function(event, ui) {}
                  });
                  $("#budget").val($("#slider").slider("value"));
                  

                  这里是 html/css:

                  And here is the html/css:

                  <input type="text" id="budget" style="width:50px;text-align:center"/>
                  
                  <div id="slider"></div>
                  

                  但是,带有图形的小文本框位于滑块的顶部看起来有点奇怪,所以我希望它更新其水平位置,使其位于滑块的手柄上方(.ui-slider-句柄)如果可能的话 - 就像一种工具提示.

                  However it looks a bit odd having the small text box with the figure just at the top of the slider, so I would like it to update its horizontal position so it is above the handle of the slider (.ui-slider-handle) if possible - like a sort of tooltip.

                  推荐答案

                  我不确定您是否需要输入字段或只是一种显示文本的方式,但您可以显示这样的工具提示 jsFiddle 示例.

                  I'm not sure if you need the input field or just a way to display the text, but you can show a tooltip like this jsFiddle example.

                  jQuery

                  var tooltip = $('<div id="tooltip" />').css({
                      position: 'absolute',
                      top: -25,
                      left: -10
                  }).hide();
                  $("#slider").slider({
                      value: 500,
                      min: 0,
                      max: 1000,
                      step: 50,
                      slide: function(event, ui) {
                          tooltip.text(ui.value);
                      },
                      change: function(event, ui) {}
                  }).find(".ui-slider-handle").append(tooltip).hover(function() {
                      tooltip.show()
                  }, function() {
                      tooltip.hide()
                  })
                  

                  这篇关于JQueryUI 滑块 - 当前位置的工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:我根本无法让我的 Slick 滑块工作 下一篇:是否可以使用固定高度的全宽 JSSOR 滑块?

                  相关文章

                  <tfoot id='l3l6b'></tfoot>

                • <i id='l3l6b'><tr id='l3l6b'><dt id='l3l6b'><q id='l3l6b'><span id='l3l6b'><b id='l3l6b'><form id='l3l6b'><ins id='l3l6b'></ins><ul id='l3l6b'></ul><sub id='l3l6b'></sub></form><legend id='l3l6b'></legend><bdo id='l3l6b'><pre id='l3l6b'><center id='l3l6b'></center></pre></bdo></b><th id='l3l6b'></th></span></q></dt></tr></i><div id='l3l6b'><tfoot id='l3l6b'></tfoot><dl id='l3l6b'><fieldset id='l3l6b'></fieldset></dl></div>
                  • <bdo id='l3l6b'></bdo><ul id='l3l6b'></ul>

                  1. <small id='l3l6b'></small><noframes id='l3l6b'>

                    <legend id='l3l6b'><style id='l3l6b'><dir id='l3l6b'><q id='l3l6b'></q></dir></style></legend>