0

imgタグを持っています。srcパスが間違っている場合は、imgタグを折りたたむ必要があります。私はこれを使用して達成することができます

onerror

HTML4で。ただし、XHTML1.0はonerror属性を許可していません。

XHTML1.0でこれをどのように達成できますか?

前もって感謝します

4

1 に答える 1

0

@Manikandan, I don't get idea how you want to collapse the img tag. but I use the following technique to use onerror with valid xHTML validation to show the default picture if original picture not found using Javascript. See if it can help you.

<img src="sample.gif" alt="Test" id="testimg" />
<script type="text/javascript">

<!--CDATA
document.getElementById("testimg").onerror = function () { this.src='noimage.gif'; };
-->
</script>
于 2012-09-05T14:56:52.670 に答える