myasp.net MVC Web アプリケーション内に次のコードがあります:-
<a href="~/Content/uploads/@(item.ID).png"><img class="thumbnailimag" src="~/Content/uploads/@(item.ID).png" /></a> @Html.ActionLink(item.Name,"Details","DataCenter", new{id = item.ID},null)
そして、次の CSS:
.thumbnailimag {
width:30px;
height:30px;
border:thin blue;
background-image:url("/Content/uploads/virtual-data-center.jpg");
}
しかし、画像が存在しない場合、各クッパは異なる方法で処理します。背景画像を設定しましたが、IE では、次のようにデフォルトの画像の上に「X」が表示されます。
src が存在しない場合にデフォルトの画像を表示する方法があれば、誰でもアドバイスできますか?