Jump to content
  • 0

Slider range


Schamil74
 Share

Question

Всем привет! Банальный вопрос для бывалых.

С JS еще не знаком, пока не дошел, изучаю верстку. 

Есть такой ползунок https://jqueryui.com/slider/#range

Я все подключил , застилизовал, все работает. Но нужно чтоб скрипт ползунка загружался из отдельного файла, а не как в примере со страницы.

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
2 минуты назад, Switch74 сказал:

а в чем проблема?
создаете файлик js со скриптом и по аналогии с подключением jquery подключаете свой файлик
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>

Не получается, когда подключаю отдельным файлом!

У меня есть main.js, его содержание см. ниже.

=============================

/* LIBS */
//= ../../bower_components/jquery/dist/jquery.min.js
//= ../../bower_components/jquery-ui/jquery-ui.min.js

/* Custom */
//=    partials/y-map.js
//=    partials/bg-range.js

============================

y-map.js - работает

bg-range.js - не работает

 

Содержимое bg-range.js

$( function() {
    $( "#slider-range" ).slider({
        range: true,
        min: 0,
        max: 1000,
        step: 10,
        values: [ 100, 500 ],
        slide: function( event, ui ) {
            $( "#amount" ).val( ui.values[ 0 ] + " руб - " + ui.values[ 1 ] + " руб" );
        }
    });
    $( "#amount" ).val( $( "#slider-range" ).slider( "values", 0 ) + " руб - " + $( "#slider-range" ).slider( "values", 1 ) + " руб" );
} );

Link to comment
Share on other sites

  • 0

если используете сервер, и файл лежит в папке /js/, то лучше <script src="/js/main.js"></script>
если просто в локале делаете, то путь лучше использовать полный file:///C:/site/js/main.js
что находится в main.js
проверяли ли console в браузере на наличие ошибок и network на отсутствие закачки файла main.js?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy