728x90

var prev_val;

$('#dropdown').focus(function() {
    prev_val = $(this).val();
}).change(function() {
     $(this).blur() // Firefox fix as suggested by AgDude
    var success = confirm('Are you sure you want to change the Dropdown?');
    if(success)
    {
        alert('changed');
        // Other changed code would be here...
    }  
    else
    {
        $(this).val(prev_val);
        alert('unchanged');
        return false; 
    }
});


즉, focus() 이벤트에서 현재 선택값을 저장해두고, 취소했을 시 저장해둔 값으로 설정한다는것.


출처 : http://stackoverflow.com/questions/6677744/jquery-cancel-change-event-on-confirmation-dialog-for-a-dropdown

  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기