Jump to content
  • 0

Как заставить работать css()?


IvanRu08
 Share

Question

Всем привет. Пытаюсь изменить св-во элемента через jQuery, вот код скрипта:

jQuery(document).ready(function() {	//Показываем иконку поиска при нажатии	$('.searchfield').click(function() {		$('.search-bg').css('background-position', '-25px 0px')	});	$('body').click(function() {		$('.search-bg').css('background-position', '0px 0px')	});}); 

Нужно чтобы при нажатии на само поле иконка смещалась, а при нажатии на другое место возвращалась на место. Если убрать обработчик клика с body, то все работает.

Вот свойства .search-bg

.search-bg{    position: absolute;    top: 13px;    right: 12px;    width: 25px;    height: 25px;    background: url(images/search-icon.png) no-repeat;} 
Edited by IvanRu08
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
$('body').on('click', function(e) {       if (!$(e.target).closest('.searchfield').length) {        $('.search-bg').css('background-position', '0px 0px');    }    });

А вообще, можно было и без js обойтись

.search-input:focus + .search-bg {    background-position: 0 0;}

Спасибо, все заработало. Там, у меня еще дальше анимация будет да к тому же jQuery используется не только для этого. Можете кратко объяснить, почему мой код не работал? Логично же вроде все

Edited by IvanRu08
Link to comment
Share on other sites

  • 0
Можете кратко объяснить, почему мой код не работал?

Твой код работает. Нужно просто добавить одну строчку в первый обработчик. 

e.stopPropagation();

У тебя одно событие перекрывается другим. Это так работает событийная модель. Можно почитать вот тут. https://learn.javascript.ru/events-and-interfaces

Edited by amelice
  • Like 2
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