我正在对象数据库进行直观表示。
我希望 img 元素成为网络搜索的第一个图像结果。
我一直在尝试使用维基百科,但我错过了一些步骤。 这就是我得到的:
var searchLink = "https://en.wikipedia.org/wiki/“;
var subject = "goblin";
searchLink += subject;
//QUESTION: how do it make an image request with the searchLink?
//I've been trying to access the direct link to the image
var classTag = document.getElementsByClassName("floatnone");
var imageTag = classTag[0].getElementsByTagName("a");
var imageLink = imageTag[0].href; //value becomes "https://en.m.wikipedia.org/wiki/File:Goya_-_Caprichos_(49).jpg"
有关如何将字符串转换为字符串搜索的第一个图片网址的任何想法?