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 이벤트, 커스텀 속성만 이해해 두면 아주 간단한 소스.
출처 :
728x90
반응형