红色字体视图源页面

时间:2014-06-25 07:04:52

标签: html

在我看来,下面的源页面是红色的。

<img alt="4054775 1991 Chevrolet Camaro" class="image" onerror="this.onerror=null;this.src='/images/nophoto_250.gif'"; 
src="http://carphotos3.cardomain.com/images/0016/35/82/16355328_large.jpg"   />

我认为

  

的onerror =&#34; this.onerror = NULL; this.src =&#39; /images/nophoto_250.gif'&#34 ;;

不正确。或者为什么这些线条是红色的?

由于

1 个答案:

答案 0 :(得分:0)

首先在追踪错误后删除分号

使用正确的HTML文档

<!DOCTYPE html>
<html>
<head>

</head>
<body> 
<p>If you click on me, I will disappear.</p> 
<p>Click me away!</p>
<p>Click me too!</p>
<img alt="4054775 1991 Chevrolet Camaro" class="image" onerror="this.onerror=null;this.src='/images/nophoto_250.gif'"
src="http://carphotos3.cardomain.com/images/0016/35/82/16355328_large.jpg"   /> 
</body>
</html>