最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - JQuery Object [object Object] has no method 'slider' when trying to use the slider demo - Stack Ove

matteradmin6PV0评论

So im trying to use the slider demo () and i copy the code as so:

 <html>
    <head>
    <script type="text/javascript" src=".7.2.min.js"></script>
    <link rel="stylesheet" href=".8.10/themes/base/jquery-ui.css" type="text/css" media="all" />
    <meta charset="utf-8">  
        <style>
        #demo-frame > div.demo { padding: 10px !important; };
        </style>
        <script type="text/javascript">
        $(function() {
            $( "#slider-range" ).slider({
                range: true,
                min: 0,
                max: 500,


    values: [ 75, 300 ],
            slide: function( event, ui ) {
                $( "#amount" ).val( "$" + ui.values[ 0 ] + " - $" + ui.values[ 1 ] );
            }
        });
        $( "#amount" ).val( "$" + $( "#slider-range" ).slider( "values", 0 ) +
            " - $" + $( "#slider-range" ).slider( "values", 1 ) );
    });
    </script>
</head>
<body>


<div class="demo">

<p>
    <label for="amount">Price range:</label>
    <input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
</p>

<div id="slider-range"></div>

</div><!-- End demo -->



<div class="demo-description">
<p>Set the <code>range</code> option to true to capture a range of values with two drag handles.  The space between the handles is filled with a different background color to indicate those values are selected.</p>
</div><!-- End demo-description -->


</body>
</html>

But the slider doesnt appear, and Chrome gives me this error: Object [object Object] has no method 'slider'

Any ideas? I searched around but the fixes didnt seem to apply to me

So im trying to use the slider demo (http://jqueryui./demos/slider/#range) and i copy the code as so:

 <html>
    <head>
    <script type="text/javascript" src="http://code.jquery./jquery-1.7.2.min.js"></script>
    <link rel="stylesheet" href="http://ajax.googleapis./ajax/libs/jqueryui/1.8.10/themes/base/jquery-ui.css" type="text/css" media="all" />
    <meta charset="utf-8">  
        <style>
        #demo-frame > div.demo { padding: 10px !important; };
        </style>
        <script type="text/javascript">
        $(function() {
            $( "#slider-range" ).slider({
                range: true,
                min: 0,
                max: 500,


    values: [ 75, 300 ],
            slide: function( event, ui ) {
                $( "#amount" ).val( "$" + ui.values[ 0 ] + " - $" + ui.values[ 1 ] );
            }
        });
        $( "#amount" ).val( "$" + $( "#slider-range" ).slider( "values", 0 ) +
            " - $" + $( "#slider-range" ).slider( "values", 1 ) );
    });
    </script>
</head>
<body>


<div class="demo">

<p>
    <label for="amount">Price range:</label>
    <input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
</p>

<div id="slider-range"></div>

</div><!-- End demo -->



<div class="demo-description">
<p>Set the <code>range</code> option to true to capture a range of values with two drag handles.  The space between the handles is filled with a different background color to indicate those values are selected.</p>
</div><!-- End demo-description -->


</body>
</html>

But the slider doesnt appear, and Chrome gives me this error: Object [object Object] has no method 'slider'

Any ideas? I searched around but the fixes didnt seem to apply to me

Share Improve this question edited Jul 9, 2012 at 23:01 hakre 199k55 gold badges450 silver badges856 bronze badges asked Jul 9, 2012 at 22:31 HeadchopperzHeadchopperz 1173 silver badges13 bronze badges 2
  • 5 you should load the jquery-ui.js plugin. – Ram Commented Jul 9, 2012 at 22:33
  • 3 Oh thanks, now i see, i feel so stupid. Haha – Headchopperz Commented Jul 9, 2012 at 22:37
Add a ment  | 

1 Answer 1

Reset to default 5

This is simply because you didn't include the source code of jQuery UI Slider in your document. "UI Core", "UI Widget" and "UI Mouse" are dependencies and you should include them in your document. Just go to the download page of JQuery UI website and download an appropriate version.(At least check "UI Core", "UI Widget", "UI Mouse" and "Slider"). When you extract content of downloaded file, you will find necessary scripts by their names.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far