DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JavaScript獲取網頁中第一個圖片id的方法
JavaScript獲取網頁中第一個圖片id的方法
編輯:JavaScript綜合知識     

 下面的代碼通過document.images獲取網頁中的所有圖片,然後獲取第一個圖片的id屬性

  1 2 3 4 5 6 7 8 9 10 11 12 13 <!DOCTYPE html> <html> <body> <img id="klematis lilac" border="0" src="klematis.jpg" width="148" height="112"> <img id="klematis pink" border="0" src="klematis2.jpg" width="149" height="118"> <p>Id of first image: <script> document.write(document.images[0].id); </script></p> </body> </html>

運行結果如下:

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