如何使用 jQuery 在更改事件上运行代码?
在本文中,我们将了解如何使用 jQuery 在更改事件上运行代码。 change 事件用于在用户更改元素的值时触发。
句法:
$(selector).change(function)
在下面的示例中,我们正在创建一个包含 GeeksforGeeks 文本的 textarea 元素。当用户更改 textarea 内容并将光标从 textarea 中移除时,会触发 change 事件并在 textarea 元素上添加样式。
例子:
HTML
How to run the code on change
event using jQuery?
GeeksforGeeks
How to run the code on change
event using jQuery?
输出: