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%"; } }
堆栈溢出确实不是人们为您工作的好地方。