この記事の例では、JS が画像の代替情報を取得する方法について説明します。皆さんの参考に共有してください。詳細は以下の通りです。
次の 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 プログラミング設計に役立つことを願っています。