Html & Script

div 순서 변경 (jquery 드래그 방식)

컨텐츠 정보

본문

jQuery UI 이용 (https://jqueryui.com/sortable/)


<style>

#sortWrap {

padding: 10px;

}

#sortWrap div {

margin: 10px;

padding: 10px 0 10px 20px;

background-color: #FFF;

border: 1px solid #ddd;

cursor: ns-resize;

}

</style>


<script>

$("#sortWrap").sortable({

axis: "y",

containment: "parent",

update: function (event, ui) {

var order = $(this).sortable('toArray', {

attribute: 'data-order'

});

console.log(order);

}

});

</script>


<div id="sortWrap">

<div data-order=1>1</div>

<div data-order=2>2</div>

<div data-order=3>3</div>

<div data-order=4>4</div>

<div data-order=5>5</div>

</div>


관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
시간은 우리각자가 가진 고유의 재산이요. 유일한 재산이다. 그것을 어떻게 사용할 것인지 결정할 수 있는 것은 오로지 우리 자신뿐이다. 결코 그 재산을 남이 우리 대신 사용하지 않도록 조심해야 한다.