2

我需要使用 jquery 设置图像的特定宽度和高度(在 css 中),但仅限于一个 div 中的第一个图像。有可能吗?

4

3 回答 3

8

#your_divis 是指包含图像的 div,可能是你有别的东西。

$('#your_div img:first').css({
   height: 200, // also use '200px' or something other
   width: 200  // '200px' or something other
});

的替代品img:firstimg:eq(0)

阅读有关 jQuery:first:eq()

于 2012-06-01T13:14:57.173 回答
4
$("#myDiv img:first").width(100).height(100);

这是JsFiddle示例。

于 2012-06-01T13:15:54.013 回答
2

试试看:

$('#yourDiv img:first-child').css({width:'100px',height:'100px'});
于 2012-06-01T13:18:53.413 回答