当多次使用 css 类时,Javascript 无法正常工作?
之前,我询问如何在 div 内居中对齐图像(带动态宽度),有人用以下代码回复:
它工作正常。但是,当我尝试对另一个图像使用相同的类时,另一个图像不再垂直居中:
你看,现在,50x50 黑色图像比应有的稍高。我注意到只有第一张图像正确对齐。如果我之后添加具有不同宽度和高度的其他图像(使用同一类),它们将会错位。
有人可以帮我找到问题吗,因为我对 javascript 不太熟悉。
Previously, I asked how to center align an image (w/ dynamic width) within a div and someone replied with this code:
It's working correctly. However, when I try using the same class for another image, the other image is no longer vertically centered:
You see, now, the 50x50 black image is slightly higher than it should be. I noticed that only the first image gets aligned correctly. If I add other images with a different width and height (using the same class) after that, they will be misaligned.
Could somebody help me find the problem as I'm not really familiar with javascript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要包装 JavaScript 来对所有匹配元素执行所有操作,而不是计算一个元素的高度并应用于所有元素:
You need to wrap the JavaScript to do everything for all matching elements, instead of calculating the height for one and applying to all:
试试这个: http://jsfiddle.net/timothyclifford/b4Bbd/7/
Try this: http://jsfiddle.net/timothyclifford/b4Bbd/7/