我有這樣的代碼:如何在頁面加載後加載圖像?
<script type="text/javascript">
$(document).ready(function(){
var id = 'i1';
var image = new Image();
image.src = 'http://url_to_my_image';
image.onload = function(){
$('#m' + id).attr('src',image.src);
$('#m' + id).show();
};
});
</script>
<ul style="list-style: none; margin: 0px; padding: 0px;">
<li id="i1" style="display: inline;">
<div style="background-color: #bbb; width:768px;height:1024px;"><div style="margin-top:505px; margin-left: 370px; font-size: 24px; font-family: Arial, sans-serif; color: #333;">Load...</div></div>
<img src="" id="#mi1" style="display: hidden;" />
</li>
</ul>
但這行不通。我想要顯示所有帶有文本「Loading ...」的空白頁面,並且在加載圖像頁面後將其插入相關的img元素。
對不起,我糟糕的英國......
我建議在你的HTML中使用LOWSRC屬性如果圖像是不是動態加載處理 –