我试图获取具有特定div的所有图像的source属性但不知何故它一直告诉我函数.attr()不存在...
这就是功能.Firebug还告诉我"这个"是一个图像元素.我正在使用jQuery v1.3.2
$('#products LI DIV IMG').each(function() { var image = this; alert(image.attr('src')); });
知道怎么解决这个问题吗?
提前致谢!
你必须使它成为一个jquerby对象来访问attr('src').
var image = $(this); alert(image.attr('src'));
或者你可以使用
var image = this; alert(image.src);