我有基本的HTML和jQuery代码,可以显示当前正在播放的电影(稍后将添加CSS),但是我还想添加每部电影的流派和图像。我不确定该怎么做。任何帮助表示赞赏,谢谢。
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>jQuery Test</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript" charset="utf-8">
var api_key = 'mysecretapikey';
$(document).ready(function(){
$.ajax({
url: 'https://api.themoviedb.org/3/movie/now_playing?api_key=' + api_key,
dataType: 'jsonp',
jsonpCallback: 'testing'
}).error(function() {
console.log('error')
}).done(function(response) {
for (var i = 0; i < response.results.length; i++) {
$('#search_results').append('<li>' + response.results[i].title + '</li>');
}
});
});
</script>
<h2>Now Playing</h2>
<p id="error"></p>
<ul id="search_results"></ul>
</body>
</html>