DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> html的DOM中document對象images集合用法實例教程
html的DOM中document對象images集合用法實例教程
編輯:關於JavaScript     

本文實例講述了html的DOM中document對象images集合用法。分享給大家供大家參考。具體分析如下:

images 集合可返回對文檔中所有 Image 對象的引用。

語法:
代碼如下:document.images[]
為了與 0 級 DOM 兼容,該集合不包括由 <object> 標記定義的圖像。

例子:
代碼如下:<html>
<body>
<img border="0" src="hackanm.gif" width="48" height="48">
<br />
<img border="0" src="compman.gif" width="107" height="98">
<br /><br />

<script type="text/javascript">
document.write("This document contains: ")
document.write(document.images.length + " images.")
</script>
</body>
</html>

希望本文所述對大家的javascript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved