Files
freeCodeCamp/guide/russian/jquery/jquery-mousedown-method/index.md
2018-10-16 21:32:40 +05:30

19 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Mousedown Method
localeTitle: Метод Mousedown
---
# Метод Mousedown
Событие mousedown происходит при нажатии левой кнопки мыши. Чтобы вызвать событие mousedown для выбранного элемента, используйте этот синтаксис: `$(selector).mousedown();`
Однако большую часть времени метод mousedown используется с функцией, связанной с событием mousedown. Вот синтаксис: `$(selector).mousedown(function);` Например:
```
$(#example).mousedown(function(){
alert("Example was clicked");
});
```
Этот код сделает предупреждение страницы «Пример был нажат» при нажатии кнопки #example.
### Больше информации
Более подробную информацию можно найти [здесь](https://www.w3schools.com/jquery/event_mousedown.asp) .