我想獲取頁面上所有圖像的href,src,width,height。 jQuery代碼是使用jQuery獲取圖像的href,src,寬度和高度
$('img:regex(data:extension, jpg)').each(function() {
var imgsrc = $(this).attr('href');
//$(this).attr('width') =0;
var newImg = new Image();
newImg.src = imgsrc;
var width = newImg.width;
//width is 0;
});
不知道什麼是錯,有什麼想法嗎?
感謝 讓
檢查我更新的答案! – 2010-08-06 20:07:47