本文實例講述了JavaScript取得網頁中第一個圖片id的方法。分享給大家供大家參考。具體如下:
下面的程式碼透過document.images取得網頁中的所有圖片,然後取得第一個圖片的id屬性
<!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>
運行結果如下:
Id of first image:klematis lilac
希望本文所述對大家的javascript程式設計有所幫助。