Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- sendFractionalSeconds
- RootGraph
- spring boot
- MYSQL
- mysql =
- load order
- 버전 문자열 비교
- fractional seconds
- +9:00
- deserializer
- 운동해서 광명찾자
- mysql not equal null
- pooled-lo
- apatch poi
- Protecle
- EmbeddedId
- getDateCellValue
- 오블완
- AuditingEntityListener
- @CreateDate
- mysql equal null
- yml
- NamedEntityGraph
- getEntityGraph
- 1*1000
- createEntityGraph
- @EntityListeners
- 티스토리챌린지
- https
- MSSQL
Archives
- Today
- Total
Hello
[javascript] jQuery.sumoselect 본문
728x90
html select multi selected기능이 필요할 때 간단하게 사용할 수 있는 플러그인을 찾아 프로젝트에서 사용하여 드롭다운 메뉴를 개선한 경험을 작성하려고 합니다.
사용 방법
jQuery와 sumoselect 플러그인 포함
<link href="/styles/sumoselect.min.css" rel="stylesheet">
<script src="/scripts/jquery-3.6.0.min.js"></script>
<script src="/scripts/jquery.sumoselect.min.js"></script>
HTML 구조
<select id="target" multiple="multiple" class="sumoselect_multiple">
//some options
</select>
<script>
//init
$('#slots').SumoSelect({
selectAll: true
})
</script>
추가 옵션
$('#target')[0].sumo.selectAll(); //전체 선택
$('#target')[0].sumo.unSelectAll() //전체 선택 해제
$('#target')[0].sumo.selectItem(numberText + ''); //value에 맞는 option selected ex) '1','2'
$('#target')[0].sumo.selectItem(number); //index에 맞는 option selected
const selectTargetCount = $('.SumoSelect').attr('selected-count'); //선택된 option갯수
728x90
'기타' 카테고리의 다른 글
[JAVASCRIPT] 파일 데이터 -> binary data (0) | 2024.03.11 |
---|---|
[JavaScript] BroadcastChannel API (0) | 2024.02.01 |
[JavaScript] SSE + Spring SseEmitter (0) | 2024.01.17 |
gradle, maven denpendencies 경로 확인 (0) | 2023.12.10 |
리눅스 서버 시간 동기화 NTP (0) | 2023.09.25 |