변경 이벤트에서 jQuery 드롭다운 값을 가져오는 방법 나는 두 개의 jQuery UI 드롭다운 자동 완성 스크립트를 추가했습니다.이제 두 번째 드롭다운 변경 시 두 개의 값을 모두 얻고 변수에 별도로 저장하고 싶습니다.어떻게 그것이 가능합니까? 어떤 아이디어나 제안이 있습니까?감사해요. 마이 피들: 샘플 내 JS 코드: (function($) { $.widget("ui.combobox", { _create: function() { var self = this, select = this.element.hide(), selected = select.children(":selected"), value = selected.val() ? selected.text() : ""; var input = this.i..