HTML5输入类型范围显示范围值

时间:2012-04-04 03:57:04

标签: html5 css3 range

我正在创建一个我想使用范围滑块的网站(我知道它只支持webkit浏览器)。

我已经完全整合并且工作正常。但我想用一个文本框来显示当前的幻灯片值。

我的意思是如果最初滑块的值是5,那么在文本框中它应该显示为5,当我滑动文本框中的值时应该更改。

我是否可以仅使用CSS或html执行此操作。我想避免使用JQuery。有可能吗?

12 个答案:

答案 0 :(得分:141)

对于那些仍在搜索没有单独的JavaScript代码的解决方案的人。没有编写javascript或jquery函数,几乎没有简单的解决方案:

<form name="registrationForm">
   <input type="range" name="ageInputName" id="ageInputId" value="24" min="1" max="100" oninput="ageOutputId.value = ageInputId.value">
   <output name="ageOutputName" id="ageOutputId">24</output>
</form>

JsFiddle Demo

如果要在文本框中显示值,只需将输出更改为输入。


<强>更新

  

它仍然是在你的html中编写的Javascript,你可以替换掉   与JS代码绑定:

 document.registrationForm.ageInputId.oninput = function(){
    document.registrationForm.ageOutputId.value = document.registrationForm.ageInputId.value;
 }

要么使用元素的ID或名称,要么在现代浏览器中都支持。

答案 1 :(得分:86)

这使用javascript,而不是直接使用jquery。它可能会帮助你开始。

function updateTextInput(val) {
          document.getElementById('textInput').value=val; 
        }
<input type="range" name="rangeInput" min="0" max="100" onchange="updateTextInput(this.value);">
<input type="text" id="textInput" value="">

答案 2 :(得分:33)

带有可编辑输入的

版本:

<form>
    <input type="range" name="amountRange" min="0" max="20" value="0" oninput="this.form.amountInput.value=this.value" />
    <input type="number" name="amountInput" min="0" max="20" value="0" oninput="this.form.amountRange.value=this.value" />
</form>

http://jsfiddle.net/Xjxe6/

答案 3 :(得分:21)

更好的方法是捕获输入本身的输入事件 而不是整个表格(表现明智):

<input type="range" id="rangeInput" name="rangeInput" min="0" max="20" value="0"
       oninput="amount.value=rangeInput.value">                                                       

<output id="amount" name="amount" for="rangeInput">0</output>

这是一个fiddle(根据Ryan的评论添加了id。)

答案 4 :(得分:13)

如果您希望当前值显示在滑块下方并随之移动,请尝试以下操作:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>MySliderValue</title>

</head>
<body>
  <h1>MySliderValue</h1>

  <div style="position:relative; margin:auto; width:90%">
    <span style="position:absolute; color:red; border:1px solid blue; min-width:100px;">
    <span id="myValue"></span>
    </span>
    <input type="range" id="myRange" max="1000" min="0" style="width:80%"> 
  </div>

  <script type="text/javascript" charset="utf-8">
var myRange = document.querySelector('#myRange');
var myValue = document.querySelector('#myValue');
var myUnits = 'myUnits';
var off = myRange.offsetWidth / (parseInt(myRange.max) - parseInt(myRange.min));
var px =  ((myRange.valueAsNumber - parseInt(myRange.min)) * off) - (myValue.offsetParent.offsetWidth / 2);

  myValue.parentElement.style.left = px + 'px';
  myValue.parentElement.style.top = myRange.offsetHeight + 'px';
  myValue.innerHTML = myRange.value + ' ' + myUnits;

  myRange.oninput =function(){
    let px = ((myRange.valueAsNumber - parseInt(myRange.min)) * off) - (myValue.offsetWidth / 2);
    myValue.innerHTML = myRange.value + ' ' + myUnits;
    myValue.parentElement.style.left = px + 'px';
  };
  </script>

</body>
</html>

请注意,此类型的HTML输入元素具有一个隐藏功能,例如,当元素具有焦点时,您可以使用向左/向右/向下/向上箭头键移动滑块。与Home / End / PageDown / PageUp键相同。

答案 5 :(得分:4)

如果您使用多张幻灯片,并且可以使用jQuery,则可以执行以下操作,轻松处理多个幻灯片:

function updateRangeInput(elem) {
  $(elem).next().val($(elem).val());
}
input { padding: 8px; border: 1px solid #ddd; color: #555; display: block; }
input[type=text] { width: 100px; }
input[type=range] { width: 400px; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<input type="range" min="0" max="100" oninput="updateRangeInput(this)" value="0">
<input type="text" value="0">

<input type="range" min="0" max="100" oninput="updateRangeInput(this)" value="50">
<input type="text" value="50">

此外,在oninput上使用<input type='range'>,您会在拖动范围时收到事件。

答案 6 :(得分:2)

没有formmin或外部JavaScript的最短版本。

<input type="range" value="0" max="10" oninput="num.value = this.value">
<output id="num">0</output>

说明

如果您想从output检索值,通常使用可以从id链接的oninput而不是使用this.nextElementSibling.value(我们利用了某些优势)我们已经在使用)

将上面的示例与这个有效但比较复杂和冗长的答案进行比较:

<input id="num" type="range" value="0" max="100" oninput="this.nextElementSibling.value = this.value">
<output>0</output>

答案最短的

  • 我们避免使用this,这在JS中对于新手来说很奇怪
  • 我们避免在DOM中连接兄弟姐妹的新概念
  • 我们避免在input中放置过多属性,而将id放在output

注释

  • 在两个示例中,当等于时,我们都不需要添加min0
  • 删除JavaScript的this关键字使其成为一种更好的语言

答案 7 :(得分:0)

<form name="registrationForm">
    <input type="range" name="ageInputName" id="ageInputId" value="24" min="1" max="10" onchange="getvalor(this.value);" oninput="ageOutputId.value = ageInputId.value">
    <input type="text" name="ageOutputName" id="ageOutputId"></input>
</form>

答案 8 :(得分:0)

我有一个涉及(Vanilla)JavaScript的解决方案,但仅作为库。您只需要将其包括在内,然后只需设置数字输入的相应source属性即可。

source属性应该是您要收听的范围输入的querySelectorAll选择器。

它甚至可以与selectcs一起使用。它可以与多个侦听器一起使用。而且它在另一个方向上起作用:更改数字输入,范围输入将调整。它将适用于稍后添加到页面上的元素(为此检查https://codepen.io/HerrSerker/pen/JzaVQg

在Chrome,Firefox,Edge和IE11中进行了测试

;(function(){
  
  function emit(target, name) {
    var event
    if (document.createEvent) {
      event = document.createEvent("HTMLEvents");
      event.initEvent(name, true, true);
    } else {
      event = document.createEventObject();
      event.eventType = name;
    }

    event.eventName = name;

    if (document.createEvent) {
      target.dispatchEvent(event);
    } else {
      target.fireEvent("on" + event.eventType, event);
    }    
  }

  var outputsSelector = "input[type=number][source],select[source]";
  
  function onChange(e) {
    var outputs = document.querySelectorAll(outputsSelector)
    for (var index = 0; index < outputs.length; index++) {
      var item = outputs[index]
      var source = document.querySelector(item.getAttribute('source'));
      if (source) {
        if (item === e.target) {
          source.value = item.value
          emit(source, 'input')
          emit(source, 'change')
        }

        if (source === e.target) {
          item.value = source.value
        }
      }
    }
  }
  
  document.addEventListener('change', onChange)
  document.addEventListener('input', onChange)
}());
<div id="div">
  <input name="example" type="range" max="2250000" min="-200000" value="0" step="50000">
  <input id="example-value" type="number" max="2250000" min="-200000" value="0" step="50000" source="[name=example]">
  <br>

  <input name="example2" type="range" max="2240000" min="-160000" value="0" step="50000">
  <input type="number" max="2240000" min="-160000" value="0" step="50000" source="[name=example2]">
  <input type="number" max="2240000" min="-160000" value="0" step="50000" source="[name=example2]">
  <br>
  
  <input name="example3" type="range" max="20" min="0" value="10" step="1">
  <select source="[name=example3]">
    <option value="0">0</option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
    <option value="6">6</option>
    <option value="7">7</option>
    <option value="8">8</option>
    <option value="9">9</option>
    <option value="10">10</option>
    <option value="11">11</option>
    <option value="12">12</option>
    <option value="13">13</option>
    <option value="14">14</option>
    <option value="15">15</option>
    <option value="16">16</option>
    <option value="17">17</option>
    <option value="18">18</option>
    <option value="19">19</option>
    <option value="20">20</option>
  </select>
  <br>
  
</div>
<br>

答案 9 :(得分:0)

对于不关心jquery使用的人,这是不使用任何id的简短方法

<label> userAvatar :
  <input type="range" name="userAvatar" min="1" max="100" value="1"
         onchange="$('~ output', this).val(value)" 
         oninput="$('~ output', this).val(value)">
  <output>1</output>
</label>

答案 10 :(得分:0)

尝试:

        BST->Left  = Insert(BST->Left,X);
        BST->Right = Insert(BST->Right,X);

以及 jQuery 部分:

 <input min="0" max="100" id="when_change_range" type="range">
 <input type="text" id="text_for_show_range">

答案 11 :(得分:-1)

如果您仍然在寻找答案,您可以使用输入类型=“数字”代替type =“range”min max work如果按此顺序设置:
1名
2-的maxlength
3-尺寸
4分钟
5-MAX
只需复制它

<input  name="X" maxlength="3" size="2" min="1" max="100" type="number" />