使用图像 url 在 JSP 中显示图像

Chr*_*ris 1 html image src

我正在尝试在 JSP 页面中显示图像。该图像只是 Google 图像,我将图像 URL 传递到 JSP 页面内的 src。

下面是我将链接传递给 img 标记的代码

  <img src="http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg" width="100" height="100">
Run Code Online (Sandbox Code Playgroud)

但是图像没有显示;它只显示图像应该出现的框。

KhA*_*aAb 5

检查标签src中的拼写img

使其正确

<img SRC="http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg" width="100" height="100">
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述