我在js文件中将图像URL作为对象。
如何抓取这些图像并将其动态插入HTML?
我尝试过使用id和from nltk.book import *
text6 #Brings the title of the text
open(text6).read()
#or
nltk.book.text6.read()
,但这不起作用。
答案 0 :(得分:-1)
修复了HTML(切换类和ID以使ID唯一)并添加了图像ID以简化:
<div id="msgStyle1" class="message">Waiting for image</div>
<div id="imgStyle1" class="message">
<img src="" id="image" />
</div>
JS:
document.getElementById('image').src = 'http://yourImagePathHere';