Files
freeCodeCamp/guide/russian/miscellaneous/change-text-with-click-events/index.md
2018-10-16 21:32:40 +05:30

10 lines
731 B
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: Change Text with Click Events
localeTitle: Изменение текста с помощью событий Click
---
Когда происходит событие клика, мы можем использовать Ajax для обновления HTML-элемента с помощью следующего кода:
```
$(".message").html("Here is the message");
```
Это говорит о том, что jQuery использует `message` класса как селектор и к этому, изменив HTML, чтобы предоставить строку, мы также можем добавить пользовательские элементы html, заключенные в кавычки.