728x90
Example
Alert a text when an <input> field is changed:
$("input").change(function(){
alert("The text has been changed.");
});
Definition and Usage
The change event occurs when the value of an element has been changed (only works on <input>, <textarea> and <select> elements).
The change() method triggers the change event, or attaches a function to run when a change event occurs.
Note: For select menus, the change event occurs when an option is selected. For text fields or text areas, the change event occurs when the field loses focus, after the content has been changed.
Syntax
Trigger the change event for the selected elements:
$(selector).change()
Attach a function to the change event:
$(selector).change(function)
Parameter | Description |
---|---|
function | Optional. Specifies the function to run when the change event occurs for the selected elements |
jQuery Change 이벤트에서 input, textarea 에서 change 가 trigger 되는 경우는, 해당 박스의 데이터가 바뀌고 나서 포인터가 다른곳으로 눌러졌을때 발동된다. (즉 그 칸안에 있으면 안된다는 소리다)
'WEB > jQuery' 카테고리의 다른 글
[Javascript] 숫자 3자리 단위마다 콤마(comma) 찍기 (0) | 2018.01.14 |
---|---|
jQuery Change Image src with Fade Effect (0) | 2018.01.14 |
PHP array_push (0) | 2018.01.14 |
Fatal error: Call to a member function query() on null (0) | 2018.01.14 |
Fatal error: Call to a member function fetch_array() on a non-object (0) | 2018.01.14 |