码迷,mamicode.com
首页 > Web开发 > 详细

Range:HTML5中的新型Input类型

时间:2014-12-19 18:55:51      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

<div style="width:100%; height:100%; position:fixed; top:0; left:0; z-index:100000; background:rgba(0,0,0,.5);"><p><input id="slider1" max="500" min="100" step="10" type="range"><input id="rangeValue1" size="2" type="text"></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

Range:HTML5中的新型Input类型

标签:

原文地址:http://www.cnblogs.com/hellman/p/4174537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!