<div style="width:100%; height:100%; position:fixed; top:0; left:0; z-index:100000; background:rgba(0,0,0,.5);"><p><input ></p></div>
<script>
function printValue(sliderID, textbox) {
var x = document.getElementById(textbox);
var y = document.getElementById(sliderID);
x.value = y.value;
}

jQuery('#slider1').change(function(){
printValue('slider1', 'rangeValue1');
});

window.onload = function() { printValue('slider1', 'rangeValue1') }

</script>

 

 

 

 

 

 

 

 

 

 

 

 

http://www.webhek.com/range

相关文章:

  • 2022-03-08
  • 2022-01-20
  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
  • 2021-12-08
猜你喜欢
  • 2021-04-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
相关资源
相似解决方案