HTML DOM中的Image complete屬性用於返回瀏覽器是否已完成圖像加載。它返回一個布爾值。
用法:
imageObject.complete
返回值:它返回布爾值false,即瀏覽器完成圖像加載後為true,否則返回false。
例:本示例返回Image complete屬性。
<!DOCTYPE HTML>
<html>
<head>
<title>
HTML | DOM Image complete Property
</title>
</head>
<body>
<center>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190602171808/629-300x255.png"
id="image" alt="" width="250" height="205"
class="alignnone size-medium wp-image-1092360" />
<br>
<br>
<button type="button" onclick="getHeight()">
Click
</button>
<h4 id="text"></h4>
</center>
<script>
function getHeight() {
var imgObject = document.getElementById("image");
var output = document.getElementById("text");
output.innerHTML =
"The Image is loaded completely:" + imgObject.complete;
}
</script>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了HTML DOM Image complete屬性支持的瀏覽器:
- 穀歌瀏覽器
- 實習探險家
- Firefox
- Opera
- Safari
相關用法
- HTML Image name用法及代碼示例
- HTML Input Image value用法及代碼示例
- HTML Input Image src用法及代碼示例
- HTML Input Image alt用法及代碼示例
- HTML image naturalWidth用法及代碼示例
- HTML Input Image name用法及代碼示例
- HTML image naturalHeight用法及代碼示例
- HTML Input Image formTarget用法及代碼示例
- HTML Input Image type用法及代碼示例
- HTML input image height用法及代碼示例
- HTML Input Image form用法及代碼示例
- HTML Input image autofocus用法及代碼示例
- HTML Input Image disabled用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML Input Image formEnctype用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Image complete Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。