jquery.combobox 중국어 api 와 예 를 들 어 위의 작은 bug 를 복 구 했 습 니 다.

1682 단어 combobox
bug 를 복구 한 코드:jquery.combobox.js다음은 매개 변수 설명 입 니 다.*combobox Container Class o 는 전체 컨트롤 의 스타일 이름(가장 바깥쪽 에 가방)을 설정 합 니 다.*combobox Value Container Class o 설정 은 선택 한 텍스트 와 drop-다운 스타일 이름*combobox Value ContentClass o 설정 선택 한 텍스트 의 디 스 플레이 스타일*combobox DropDownlClass o 설정 드 롭 다운 옵션 의 스타일*comboboxDropDownButtonClass o 에서 드 롭 다운 단 추 를 설정 하 는 스타일*combobox DropDownItemClass o 에서 드 롭 다운 옵션 을 설정 하 는 스타일*combobox DropDownItemHoverClass o 마우스 가 옵션 으로 이동 할 때의 스타일*combobox DropDownGroupItemHeaderClass o 에서 optgroup ItemHeader 를 설정 하 는 스타일*combobox DropDownItemContainerClass o 에서 optgroup 요 소 를 설정 하 는 스타일*animation Type o 설정slide,hide(100),기본 slide*width o 컨트롤 폭*height o 컨트롤 높이*onChange o 옵션 이 변 할 때 이 이 벤트 를 실행 하고 두 개의 인 자 를 받 습 니 다.첫 번 째 는 selecedIndex 이 고 두 번 째 는 selected Value 입 니 다.다음은 간단 한 예제 입 니 다
 
<script type="text/javascript" language="javascript">
$(function () {
var settings = {
'width':200,
'onChange': function (selectedIndex,selectedVale) {
alert('value: ' + selectedVale);
}
};
var combobox = $("#combobox-tmpl-test").combobox(settings);
});
</script>
<select id="combobox-tmpl-test" name="testname" tabindex="3">
<option value="1">Kirill</option>
<option value="2">Yura</option>
<option value="3">Jhon Smith</option>
<option value="4">Mila</option>
</select>

좋은 웹페이지 즐겨찾기