Jump to content
  • 0

Выпадающий список на AJAX


volshebnyi
 Share

Question

Здравствуйте!

 

Подскажите, пожалуйста, как сделать выпадающий список без перезагрузки страницы, который реализован вот здесь (над товарами ВЫВОДИТЬ ПО РЕЙТИНГУ):

http://rozetka.com.ua/mobile-phones/c80003/filter/preset=smartfon/

 

Буду благодарен за помощь!

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

HTML - верстаете список

CSS - назначаете ему стили

AJAX - отправьте запрос на сервер и с сервера отдайте нужную страницу списка

 

 

Меня именно вот это и интересует - AJAX - отправьте запрос на сервер и с сервера отдайте нужную страницу списка

 

Great Rash, Вы не могли бы показать как сделать такое же на примере?

Edited by volshebnyi
Link to comment
Share on other sites

  • 0

Вот вам небольшой пример с использованием PHP и jQuery.

PHP (допустим list.php):

$list = '<ul>';$list_item = '<li>item</li>';for ($i = 0; $i < 10; $i++) {  $list .= $list_item;}$list .= '</ul>';echo $list;
jQuery (допустим внутри index.php):

<div id="list">loading...</div><script>$.ajax({  url: 'list.php',  dataType: 'html',    success: function(data) {    $('#list').html(data);  }});</script>
  • Like 1
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