**已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。
这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
13小时前关门了。
Improve this question
我正试图使一个口袋妖怪队发电机与pokeapi和我能够获取的文字信息罚款,但我不能想出一种方法来显示图像。
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Java Script 201</title>
</head>
<body>
<img src="" id="monster">
<h3>Name:</h3>
<div id="name"></div>
<h3>Height:</h3>
<div id="height"></div>
<h3>Weight:</h3>
<div id="weight"></div>
<button class="button">Generate Pokemon Team!</button>
<script src="script.js"></script>
</body>
</html>
const name = document.getElementById("name");
const pokemonImage = document.getElementById('pokemon')
const height = document.getElementById("height");
const weight = document.getElementById("weight");
const button = document.querySelector(".button");
button.addEventListener('click', (e) => {
e.preventDefault()
const randomNumber = Math.ceil (Math.random() * 905)
fetch (`https://pokeapi.co/api/v2/pokemon/${randomNumber}/`)
.then (response => response.json())
.then (pokemon => {
console.log(pokemon)
name.innerHTML = pokemon ['name'];
height.innerHTML = pokemon ['height'];
weight.innerHTML = pokemon ['weight'];
id.innerHTML = (`Pokemon Id: ${Pokemon['id']}`);
pokemonImage.innerHTML =`<img id='monster' src=https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/${Pokemon['id']}.png>`
})
})
我试过使用ID,只是似乎找不到一个好的anwsxer在互联网上。
3条答案
按热度按时间kiz8lqtg1#
选择页面上的
<img>
元素并设置其src
属性。ldxq2e6h2#
您可以只获取带有id的标记并设置属性
yruzcnhs3#
你只是犯了一些注意力不集中和打字错误。否则你的代码是正确的。
工作代码: