我想要在一個範圍中包裝每個數組元素。所以我以後可以添加一個類。但真的不知道如何。 這裏是我的代碼:如何在排序後將數組元素包裝到html標籤中?
let hit = 0;
let pick = props.selected.length;
let payout = null;
let currentPayout;
let pickList = '';
props.selected.sort((a, b) => {
if (a > b) return 1;
if (a < b) return -1;
return 0;
}).forEach((n) => {
if (pickList.length) {
pickList += ' ';
}
// Here's the mess, I'd like to be able to wrap each number in a span.
pickList =+ n;
});
你想創建一個HTML字符串或DOM節點列表嗎? – trincot