HTML DOM complete ÊôÐÔ
¶¨ÒåºÍÓ÷¨
complete ÊôÐÔ¿É·µ»Øä¯ÀÀÆ÷ÊÇ·ñÒÑÍê³É¶ÔͼÏñµÄ¼ÓÔØ¡£
Èç¹û¼ÓÔØÍê³É£¬Ôò·µ»Ø true£¬·ñÔò·µ»Ø fasle¡£
Óï·¨
imageObject.complete
ʵÀý
ÏÂÃæµÄÀý×ӿɼì²âͼÐÎÊÇ·ñÒÑÍê³É¼ÓÔØ£º
<html>
<head>
<script type="text/javascript">
function alertComplete()
{
alert(document.getElementById("compman").complete
)
}
</script>
</head>
<body onload="alertComplete()">
<img id="compman" src="compman.gif" alt="Computerman"
width="107" height="98" />
</body>
</html>