Jump to content
  • 0

Динамическое обновление div'a по выбору в select


dimapriv
 Share

Question

Здраствуйте, есть в div в который должена загружаться страница через ajax, есть выпадающий список(select). Как сделать, чтобы при выборе определённого значения в списке в div подгружаласть страница ?

Вод код ajax:


$(document).ready(function(){

$('#loding_form_comment').click(function(){
$.ajax({
url: "add_comment.html",
cache: false,
success: function(html){
$("#content").html(html);
}
});
});

$('#loding_form_search').click(function(){
$.ajax({
url: "search.html",
cache: false,
success: function(html){
$("#content").html(html);
}
});
});
$('#st').click(function(){
$.ajax({
url: "1.html",
cache: false,
success: function(html){
$("#stl").html(html);
}
});
});

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

В тег Select на событие onchange (change) ставите запуск функции которой в параметре указываете this.value (значение выбранного опшена),

и в этой функции уже делаете ajax запрос, в котором передаете этот параметр и в зависимости от его значения выводите в div нужное вам содержимое.


<select onchange="funciya(this.value)">
<option value="1">Вариант 1<option>
<option>value="2">Вариант 2<option>
<option>value="3">Вариант 3<option>
<select>

Link to comment
Share on other sites

  • 0

Должно строиться динамически, должна загружаться страница, путь к которой написан в value. В первом сообщении я привёл код, но там загрузка происходит от клика по элементу(div, span и тд.) с указанным id.

Link to comment
Share on other sites

  • 0


<select onchange="funciya(this.value)">
<option value="search.html">поиск<option>
<option value="add_comment.html">коменты<option>

<select>


<script type="text/javascript">
function funciya (link){
$('#id_nujnogo_diva').load(link)}
</script>

Вроде бы должно работать

Edited by Avalon4eg
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