代码如下:
$('img').each(function(){
alert("img的宽:"+ $(this).width() );
alert("img的高:"+ $(this).height() );
})
$('img')是选择所有的img标签的元素
each(function (){})是遍历获取的img,在function(){}里对img元素进行操作
代码如下:
$('img').each(function(){
alert("img的宽:"+ $(this).width() );
alert("img的高:"+ $(this).height() );
})
$('img')是选择所有的img标签的元素
each(function (){})是遍历获取的img,在function(){}里对img元素进行操作