我在我的网站上进行了测验,并使用本地存储来保存最近的分数。
我喜欢在警报中打印它们,并且效果很好,但是我喜欢在新行中打印每个乐谱。
这怎么可能?
另外,是否可以在警报中放置标题(或分数上方的文字)?
function highscore() {
var lastscores = localStorage.getItem("lastscores.sort().reverse()").split("\n")
}
最佳答案
在这段代码中,我首先将一些分数保存在数组中,然后从localStorage
检索它,然后将其拆分为数组,因为它是字符串,因此将其解析为整数,然后按降序对其进行排序。如果要升序将b-a
替换为a-b
localStorage.setItem("lastscores",[18,44,5,7]);
var title = "Your HighSocres";
function highscore() {
var lastscores =
localStorage.getItem("lastscores")
.split(',')
.map(function(s){
return parseInt(s); //convert to integer(Number)
})
.sort(function(a,b){
return b -a //sort decending)
})
.join('\n')
var toAlert = title + "\n" + lastscores
alert(toAlert)
}
对于标题,您可以执行以下操作:
const allString = "Your socres \n" + lastscores