为什么这段代码不起作用?图像显示为无图像符号

时间:2013-07-12 03:09:22

标签: html image

此代码显示为无信息符号。我有所有的图像文件。

<a href='someurl'>
  <img src='someImage<img src="Buttonplay.gif" width="1152" height="648" alt="Play" title="Play Button" border="0" align="middle" />' />
</a>

此代码显示为无信息符号。我有所有的图像文件。

1 个答案:

答案 0 :(得分:2)

如果这确实是HTML并且在输入示例时没有错误,那么您的问题是因为<img/>格式不正确。您有一个嵌套在图像src属性中的图像元素。

<img src='someImage<img src="Buttonplay.gif" width="1152" height="648" 
 alt="Play" title="Play Button" border="0" align="middle" />' />

应该是:

<img src="Buttonplay.gif" width="1152" height="648" 
 alt="Play" title="Play Button" border="0" align="middle" />