純css解決方案:css
<img src="broken.png" alt="">
img { position: relative; } img:after { content: url('替代圖片'); display: block; position: absolute; // 底下是故意要填滿而且背景填滿擋住底下那個很醜的加載失敗圖片(字體) z-index: 2; top: 0; left: 0; width: 100%; height: 100%; background-color: #fff; }
這樣使用是應爲img標籤的一些特性:ecmascript
1,img是個比較特殊的標籤,和video同樣具備被替代性,全部當圖片加載成功時,原先定義的僞類會失去做用不提示。ide
2,alt屬性會在圖片加載失敗是出現(替代文字),這樣僞類就會起做用了。測試
網上不少說這樣也能夠解決,但我測試暫未成功:字體
<div class="bg"> <img :src="goods.phoneFloorAd.resUrl" :onerror="errorImg01"> </div>
<script type="text/ecmascript-6"> export default { data () { return { errorImg01: 'this.src="' + require('assets/images/load_logo01.png') + '"' }; } } </script>