Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
いくつかの HTML ファイルがあります (何が入っているかわかりません) JavaScript を使用して、高さ 100% のすべての画像のサイズを変更して高さ 50% にする必要があります。
JavaScriptのみを使用している場合に必要なことは、タグ名ですべての要素を取得することです
var imgs=document.getElementsByTagName("img"); for(var i in imgs){ if(imgs[i].height=="100%"){ img[i].height="50%"; } }
スタック オーバーフローは、人々があなたに代わって作業を行うのに適した場所ではありません。