728x90
반응형

input 태그에 작성값이 특정 조건에 맞지 않을때 기존 값을 다시 대입시키고 싶었다.

이에 적당한 코드가 있어서 기록해둠

1
2
3
4
5
6
7
8
9
10
11
$('input').on('focusin'function(){
    console.log("Saving value " + $(this).val());
    $(this).data('val', $(this).val());
});
 
$('input').on('change'function(){
    var prev = $(this).data('val');
    var current = $(this).val();
    console.log("Prev value " + prev);
    console.log("New value " + current);
});
cs

 

javascript의 focusin 이벤트와 change 이벤트, 커스텀 속성만 이해해 두면 아주 간단한 소스.

 

 

출처 : 

 

Input jQuery get old value before onchange and get value after on change

I have an input text in jQuery I want to know if it possible to get the value of that input text(type=number and type=text) before the onchange happens and also get the value of the same input inpu...

stackoverflow.com

 

728x90
반응형

+ Recent posts