我有代码,它从服务器获取 json 文件,然后在页面上呈现一些元素。在这段代码中,我还跳过了关键“点”重复值的项目。我的问题是,我如何让这些跳过的项目存储在某个地方,所以如果我点击有重复项的项目,它会将我链接到包含这些重复项列表的其他页面?这是我的代码
var request = $.ajax({
type: "GET",
url: "example.com/rewards.json"
dataType: "json",
error: function (data, textStatus){
console.log( "it`s error" );
console.log( status );
console.log( data );},
success: function (data, textStatus){
console.log( "success" );
console.log( status );
console.log( data );
}
})
request.success(function(data, textStatus){
var lis = "";
var arr = [];
var iter = 0;
$.each(data.rewards, function(key, val){
if ($.inArray(val.points, arr) == -1)
{
lis += "<div class = 'ui-block-" + String.fromCharCode(97 + iter%3) + "'><a href ='#' class ='ui-link-inherit'>" + val.points + "</a></div>";
arr.push(val.points);
iter += 1;
}
});
$("#rewards_table").html(lis);
})
我想要什么的描述可能有点混乱,所以请随时问我