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