Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 JSON,我已将字符串和图像加载到其中,但无法弄清楚如何将图像打印到浏览器。
如果“document.write(diary_1938[pageRef].date_1);” 将字符串打印到浏览器,图像的等效代码是什么?谢谢。
你到底想做什么?有许多 JavaScript 库使这件事在客户端变得更加容易,因为它们允许轻松地直接进行 DOM 操作。我使用道场;jQuery 非常流行。
听起来您想要做的是生成一个图像标签来引用图像。
例如,类似于
document.write("<img src='img.png' height='10' width='20'>");
当然,document.write 不是一种可靠的做法——直接的 DOM 操作,有或没有您选择的实用程序库通常是更好的方法。