本文實例講述了JS取得圖片alt資訊的方法。分享給大家供大家參考。具體如下:
下面的JS程式碼可透過圖片的alt屬性取得圖片的提示資訊
<!DOCTYPE html> <html> <body> <img id="compman" src="compman.gif" alt="Crazy computerman" width="107" height="98"> <p>The value of the alt atrribute is: <script> document.write(document.getElementById("compman").alt); </script> </p> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。