我是 jquery 的新手,我想知道你是否可以帮助我。我正在设置一个网页,该网页从 .json 文件导入前 100 个 imdb 列表,还从另一个 .json 文件导入详细信息。我已经做到了,但是我很难将本地存储与所有复选框一起使用。我希望能够通过单击复选框来存储我看过的电影,并且我希望页面再次记住它。我也是stackoverflow的新手,所以我希望我做对了。
到目前为止,这是我的 jquery 代码!
$(document).ready(function() {
$.getJSON('movies.json', function(result) {
$.each(result, function(index, movie){
$.getJSON('details/' + movie.id + '.json', function(details) {
$('#movies').append("<div class='movie' id='" + movie.id +"'>" +
'<p><input type="checkbox" class="checkbox" id='+ movie.id + ' name="myCheckbox"/> <p id='
+ movie.id + '><p class="movietitle" id ='+ movie.id +'>'+ movie.title +'</p></p></p>' +
"<div class='info' id='" + movie.id +"'>" +
'<p> Country:' + details.country + '</p>' +
'<p> Year:' + details.year + '</p>' +
'<p> Rating:' + details.rating + '</p>' +
'<p> Languages:' + details.languages + '</p>' +
'<p> Rating:' + details.rating + '</p>' +
'<a class="imdb" href =" '+ details.imdburl + ' ">Skoðaðu myndina á imdb</a>' +
"</div>" +
"</div>"
);
});
});
});
});