代码的目标是从数组中获取用户输入的国家/地区,即 Item[4],将国家/地区附加到 url,然后使用请求从该 url 获取图像。我假设我需要使用 img src 在我的网站上显示图像。我做错了什么吗?我什么也没看到。另外,我正在尝试使用 javascript 来完成此任务。谢谢!API: https: //www.countryflags.io
personInfo.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Person Information Page </title>
<style>
h2{
text-align: center;
}
label {
display: inline-block;
width: 150px;
text-align: left;
}
</style>
</head>
<body>
<p style="text-decoration: underline;"><a href=http://127.0.0.1:5000/> Back to home </a></p>
<h2 id="displayName" ></h2>
<div class="block">
<label>Born on: </label>
<p id="birthdate"></p>
</div>
<div class="block">
<label>Born in the country: </label>
<p id="country"></p>
</div>
<div class="block">
<label>Some facts about country: </label>
<img id="countryFlag" src = country_flag; />
</div>
</body>
</html>
慕桂英3389331
相关分类