리스트 순서 랜덤 변경

 

 

function() {
  $('ul').each(function() {
    var ul = $(this);
    
    var liArr = ul.children('li');
    
    liArr.sort(function() {
      var temp = parseInt(Math.random()*len);
      var temp1 = parseInt(Math.random()*len);
      return temp1-temp;
    }).appendTo(ul);
  });
});

 

 

See the Pen apdrzB by Kiyeol Yoo (@spiegel) on CodePen.

 

 

 

반응형

'Javascript' 카테고리의 다른 글

문법과 타입  (0) 2020.01.04
처음 자바스크립트 시작하기  (0) 2020.01.04
아코디언  (0) 2017.07.10
경로 파라미터 추출 함수  (0) 2017.01.06
파일명 추출 함수  (0) 2017.01.06