作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试制作一个 giphy 克隆,我想显示目前流行的六个 gif。但是,当我运行代码时,它似乎能够从响应数据中获取图像源,但实际的 gif 未显示。
我尝试使用响应数据中提供的一些不同的 url 和 mp4 链接,但它最终总是只显示图像标签。
function getTrending() {
// Create AJAX request to get the trending gifs
// Create the new XHR object
let xhr = new XMLHttpRequest();
// Call the open function with a GET-type request, url, and set async to true
xhr.open('GET', 'http://api.giphy.com/v1/gifs/trending?&api_key=<MyApiKey>&limit=6', true);
// Call the onload function
xhr.onload = function() {
// Check if the server status is 200
if(this.status === 200) {
// Return server response as an object using JSON.parse
let trendingResponse = JSON.parse(this.responseText);
// Create for in loop to insert the trending gifs into the gif container div
for (i in trendingResponse.data) {
gifsContainer.append("<img src='"+ trendingResponse.data[i].images.original.url+"' />")
}
console.log(trendingResponse.data[1]);
}
}
最佳答案
那是因为当你使用 append()
,您实际上是将实际文本而不是元素/节点附加到您的 gifsContainer
:
The
ParentNode.append()
method inserts a set ofNode
objects orDOMString
objects after the last child of theParentNode
.DOMString
objects are inserted as equivalentText
nodes.
您应该使用 new Image()
构造图像元素然后附加它:
for (i in trendingResponse.data) {
const image = new Image();
image.src = trendingResponse.data[i].images.original.url;
gifsContainer.append(image);
}
如果您更习惯使用 document.createElement()
,这也是可能的:
for (i in trendingResponse.data) {
const image = document.createElement('img');
image.src = trendingResponse.data[i].images.original.url;
gifsContainer.append(image);
}
关于javascript - For in 循环显示 img 标签而不是实际的 Giphy gif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55658752/
我是一名优秀的程序员,十分优秀!