Javascript 배열 은 특정 규칙 에 따라 정렬 됩 니 다.

902 단어 자바 script
var objs = [
    {'name': 'A', 'type': 'fly'},
    {'name': 'B', 'type': 'blur'},
    {'name': 'C', 'type': 'wipe'},
    {'name': 'D', 'type': 'cube'},
    {'name': 'E', 'type': 'iris'},
    {'name': 'F', 'type': 'fade'}
];

objs.sort(function(a,b){
    // order     objs        
    var order = ["wipe", "fly", "iris", "flip", "cube",
        "blur", "zoom", "fade", "glow", "rotate"];
    return order.indexOf(a.type) - order.indexOf(b.type);
});

//            
var result = objs.map(function(a){
    return a['name'];
});

alert('Current order is: ' + result.join(', '));

좋은 웹페이지 즐겨찾기