使用image url在JSP中显示图像

时间:2015-01-15 12:32:50

标签: html image src

我试图在JSP页面中显示图像。该图片只是一张Google图片,我将图片网址传递给JSP页面内的src。

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

  <img src="http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg" width="100" height="100">

然而,图像无法显示;它只显示图像应出现的框。

3 个答案:

答案 0 :(得分:4)

检查src标记中的img拼写

使其正确

<img SRC="http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg" width="100" height="100">

enter image description here

答案 1 :(得分:1)

修正了拼写错误:

<img src="http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg" width="100" height="100">

http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg

答案 2 :(得分:1)

你那边有一个错字:

  <img scr="http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg" width="100" height="100">

应该是

  <img sRC="http://tigerday.org/wp-content/uploads/2013/04/Siberischer_tiger.jpg" width="100" height="100">