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
- 7월 공모주 청약 일정
- 맥
- SQL
- 주식
- linux
- JavaScript
- 공모주 청약 일정
- 리눅스
- 공모주
- codeigniter
- IPO
- 오라클
- php
- java
- Stock ipo
- 제이쿼리
- 코드이그나이터
- 6월 공모주 청약 일정
- Oracle
- Stock
- html
- 공모주 청약
- jquery
- MYSQL
- Eclipse
- css
- 자바스크립트
- 주식 청약 일정
- 자바
- 주식 청약
Archives
- Today
- Total
개발자의 끄적끄적
[javascript/jquery] jquery sortable example / jquery 드래그해서 순서 변경하는 방법 본문
개발/javascript & jquery
[javascript/jquery] jquery sortable example / jquery 드래그해서 순서 변경하는 방법
효벨 2021. 8. 13. 01:00728x90
반응형
[javascript/jquery] jquery sortable example / jquery 드래그해서 순서 변경하는 방법
jquery 를 사용하다보면
li 리스트의 항목을
드래그해서 위치를 변경하고 싶은 경우가 있습니다!
그럴때는 jquery 의
sortable 를 이용하시면 됩니다!
우선 필요한 라이브러리를 로드합니다.
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js" ></script>
<script type="text/javascript" src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" ></script>
그리고 아래와 같은 category 라는 ul 이 있다고 가정하고
하부 li 요소들의 클래스에 아래 나와있는
ui-state-default 클래스를 추가합니다.
<ul id="category">
<li class="ui-state-default">111</li>
<li class="ui-state-default">222</li>
</ul>
그리고는 category 라는 아이디를 가진
ul 에 아래와 같이 sortable 를 적용합니다.
$(function() {
$("#category").sortable();
$("#category").disableSelection();
});
그리고 테스트 하면
너무깔끔하게 정상동작하는 것을
확인할 수 있습니다!
참고들 하세요!
반응형
'개발 > javascript & jquery' 카테고리의 다른 글
Comments