Need to learn JavaScript?
jQuery is a JavaScript framework, so if you don't already know about the JavaScript programming language, we recommend that you learn it now:
Learn JavaScript
This article has been localized into Russian by the community.
If you are fluent in Russian, then please help us - just point to any untranslated element (highlighted with a yellow left border - remember that images should have their titles translated as well!) inside the article and click the translation button to get started. Or have a look at the current translation status for the Russian language.
If you see a translation that you think looks wrong, then please consult the original article to make sure and then use the vote button to let us know about it.
Metadata
Please help us by translating the following metadata for the article/chapter, if they are not already translated.
If you are not satisfied with the translation of a specific metadata item, you may vote it down - when it reaches a certain negative threshold, it will be removed.
Please only submit an altered translation of a metadata item if you have good reasons to do so!
Please
login to translate metadata!
Already logged in? Please try reloading the page!
События:
Введение в события
События в JavaScript - это обычно что-то такое, когда вы пишете фрагмент кода или имя функции внутри атрибута события в теге HTML. Например, вы можете создать событие для ссылки следующим образом:
<a href="javascript:void(0);" onclick="alert('Hello, world!');">Test</a>
И, разумеется, такой код корректен и при использовании jQuery. Однако, в jQuery вы можете привязывать код к событию элемента гораздо проще, особенно, если вы хотите привязать анонимную функцию или один и тот же код для нескольких событий или нескольких элементов. В качестве примера вы можете привязать одно и то же событие ко всем ссылкам и тегам span в вашем документе всего лишь парой строк кода:
<script type="text/javascript">
$(function()
{
$("a, span").bind("click", function() {
alert('Hello, world!');
});
});
</script>
Здесь мы используем метод bind (привязать), который необходим для работы с событиями и jQuery. В следующих параграфах мы расскажем вам подробнее, как это работает, и предоставим другую необходимую информацию.
This article has been fully translated into the following languages:
Is your preferred language not on the list?
Click here to help us translate this article into your language!