Jump to content
  • 0

Не срабатывает код


nightgremlin
 Share

Question

Не пойму в чем дело. Пожалуйста подскажите. Мне надо чтобы при нажатии (onmousedown) на любую кнопку на страничке менялись её стили:

document.body.onmousedown = function(event) {
  var target = event.target;
    if (target != 'button') return; // Если нажали не на кнопку, то ничего не происходит

    target.style.borderBottomWidth = 1 + 'px'; // Например, поменяем размер нижней границы
};

Заранее спасибо!

Edited by nightgremlin
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
7 часов назад, DivMan сказал:

 if (target.tagName != 'BUTTON')

 

+1, как всё просто! Огромное спасибо, усталость наверное даёт свой отпечаток. Дописал немного код: https://jsfiddle.net/nightgremlin/f5vcgadr/  Это так для примера, может кому пригодиться.

Link to comment
Share on other sites

  • 0
В 15.09.2017 в 06:19, nightgremlin сказал:

+1, как всё просто! Огромное спасибо, усталость наверное даёт свой отпечаток. Дописал немного код: https://jsfiddle.net/nightgremlin/f5vcgadr/  Это так для примера, может кому пригодиться.

Вот пример на jQuery : 

$('body').on('mousedown',function(event) {
  var elem = event.target;
  
	if(!$(elem).is('button')){
      
      $(elem).css('border-bottom':'1px solid deepskyblue');
    
  }
}

jQuery значительно упрощает работу с DOM элементами.

Edited by DevChristmas
Link to comment
Share on other sites

  • 0
3 часа назад, DevChristmas сказал:

jQuery значительно упрощает работу с DOM элементами.

Согласен с вами, но нет необходимости подключать целую библиотеку ради нескольких строчек кода.

Да и нативным 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