您好,登錄后才能下訂單哦!
對于頁面上的dom元素,如果想要通過一個數組來確定一組dom元素的順序,如果vue element 都是很簡單可以實現的
<ul>
<li v-if="item in lidata" :id="item.id">{{item.name}}</li>
</ul>
js:
...
data:function(){
return{
lidata:[{"id":"1","name":"劉明"},
{"id":"2","name":"張飛"},
{"id":"3","name":"關羽"}]
}
}
...
但是如果是jquery 怎么弄呢?一個一個比較之后重新插入效率是有點低的
所以我做了個簡單優化
farraysort: function (keyarray) {
//數組排序 e1,e2對應div 的id
/**
* [e1:
*,e2,
* e3,
* e4];
*/
// keyarray = ["e1, "e2", "e3", "e4",];//默認值
var oldKeyarray = JSON.parse(localStorage.getItem("sortKey"));
var issame = true;//判斷數組是否有變化
if (oldKeyarray) {
console.log(oldKeyarray.construct);
oldKeyarray.forEach(function (item, index) {
if (item !== keyarray[index]) {
issame = false;
return;
}
});
if (issame) {//如果順序一致就不用排序了。針對刷新頁面
return;
} else {
localStorage.setItem("sortKey", JSON.stringify(keyarray));
}
} else {//順序存在本地,便于比較
localStorage.setItem("sortKey", JSON.stringify(keyarray));
}
//將對應dom元素獲取到放到一個對象中
var array =
{
"e1": document.getElementById("e1"),
"e2": document.getElementById("e2"),
"e3": document.getElementById("e3"),
"e4": document.getElementById("e4")
};
//創建Fragment
var elementfrag = document.createDocumentFragment();
keyarray.forEach(function (item) {//創建dom片段
elementfrag.appendChild(array[item]);
});
//一次性插入
document.getElementById("sortContainer").appendChild(elementfrag);
}
這個diff應該還有很多改進的空間,有時間再研究
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。