Jump to content
  • 0

Закрытие всплывающего блока


Veseloff
 Share

Question

В общем, сделал я некоторое подобие всплывающей подсказки при наборе текта в поиске (по смыслу походит на такой же у яндекса, например). Блок вылезает, встаёт на нужное место и всё хорошо. Вот только не знаю как его закрыть при нажатии куда угодно за пределы этого блока. Использую jQuery. Если сделать, скажем

$(document).click(function(){$('#hint').hide()});

то куда не кликни, блок закроется. А вот как сделать так, чтобы блок не закрывался при клике на него самого?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

<div id="block1">Block 1</div>
<div id="block2">Block 2</div>
<div id="block3">Block 3</div>
<div id="block4">Block 4</div>

<script type="text/javascript">
$(document).ready(function() {
$('div').bind('click', function() {
var a = $(this).attr('id');
var b = $('#block3').attr('id');
if (b != a) {$(this).hide();}
});
});
</script>

Ап.

Это так сказать пища для размышлений. Полноценный скрипт нету времени сейчас писать

Edited by Golgi
Link to comment
Share on other sites

  • 0

Эта проблема решается очень изящно:


$('#hint').click(function(e) {
e.stopPropagation();
});

$(document).click(function() {
$('#hint').hide()
});

А можно объяснить подробней, как учащемуся, этот код? Не совсем понятно, как это работает. Я так понимаю stopPropagation отменяет событие?

Edited by buddah
Link to comment
Share on other sites

  • 0

А можно объяснить подробней, как учащемуся, этот код? Не совсем понятно, как это работает. Я так понимаю stopPropagation отменяет событие?

Оно вроде как отменяет распостранение события на последующие элементы, на которые это событие тоже может подействовать

Link to comment
Share on other sites

  • 0

А можно объяснить подробней, как учащемуся, этот код? Не совсем понятно, как это работает. Я так понимаю stopPropagation отменяет событие?

Оно вроде как отменяет распостранение события на последующие элементы, на которые это событие тоже может подействовать

ok, понял, спасибо)

Great Rash, спасибо, почитаемс. :)

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