所以就像我在标题中写的那样,我有多个具有相同类的元素,我获取该类并尝试检查该图像的子图像的宽度/高度/src。
我只设法获得了第一张图像的高度//宽度,但是我获得了所有图像的 src。
这是html:
<a class="test">
<img src="http://www.kitchenspro.com/files/Testimonials/Large/1502046700250312a71707.jpg">
</a>
<a class="test">
<img src="http://www.kitchenspro.com/files/Testimonials/Large/40183.9461166782.jpg">
</a>
<a class="test">
<img src="http://sphotos-a.xx.fbcdn.net/hphotos-ash4/s480x480/391362_365319466870994_1543740404_n.jpg">
</a>
这是jQuery
var imagesrc= "";
var imageheight = "";
var imagewidth = "";
var i=0;
$(".test > img").each(function() {
i++;
imagesrc = $(this).attr("src");
imageheight = $(this).width();
imagewidth = $(this).height();
document.write("<br>This is image's src: " + imagesrc + " This is img height: " + imageheight + " this is width: " + imagewidth + "<br>");
});
如果我没有以正确的方式呈现代码,我深表歉意。
任何帮助将不胜感激。
先谢谢了。