1

如何在父 td 宽度内设置图像大小?图像可能会动态变化。

4

2 回答 2

3
var imgs = $('img');

imgs.each(function() {
  var pwidth = $(this).parent('td').width();
  $(this).attr('width',pwidth);
});

您还可以使用 css:

img {width: 100%}

这样图像会自动获取其父级的宽度

于 2012-05-14T09:58:03.523 回答
2

我想你已经有了这个代码jsfiddle。你能提供更多细节吗

于 2012-05-14T10:19:22.737 回答