最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jquery form slider (input-slider) - Stack Overflow

programmeradmin5浏览0评论

How to make slider with jquery, like here?

User should select a value from slider, and this value should automatically be in input

I can not find the appropriate plug-in...

How to make slider with jquery, like here?

User should select a value from slider, and this value should automatically be in input

I can not find the appropriate plug-in...

Share Improve this question asked Dec 25, 2011 at 14:41 Ilya MedvedevIlya Medvedev 1,2793 gold badges12 silver badges22 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

http://jqueryui./demos/slider/

 $( "#slider" ).slider({
        value:100,
        min: 0,
        max: 500,
        step: 50,
        slide: function( event, ui ) {
                           //Its setting the slider value to the element with id "amount"
            $( "#amount" ).val( "$" + ui.value );
        }
    });

You can customize the style to look like the example you mentioned.

发布评论

评论列表(0)

  1. 暂无评论