我有这样的json对象
[
{ "id":"1", "item1":"item1 text","item2":"item2text","item3":"item3text" },
{ "id":"2", "item1":"item1 text","item2":"item2text","item3":"item3text" }
]
我的问题是我想通过传递元素的 id 通过函数将 id 2 移动到第一个位置。喜欢
function movetotop(id){
//Code here to move id 2 to the top position
}
希望有人帮忙。
问候