我需要使用 jquery 设置图像的特定宽度和高度(在 css 中),但仅限于一个 div 中的第一个图像。有可能吗?
问问题
1330 次
3 回答
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 回答