img
タグを持っています。src
パスが間違っている場合は、img
タグを折りたたむ必要があります。私はこれを使用して達成することができます
onerror
HTML4で。ただし、XHTML1.0はonerror属性を許可していません。
XHTML1.0でこれをどのように達成できますか?
前もって感謝します
img
タグを持っています。src
パスが間違っている場合は、img
タグを折りたたむ必要があります。私はこれを使用して達成することができます
onerror
HTML4で。ただし、XHTML1.0はonerror属性を許可していません。
XHTML1.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>