带有jquery的父容器的宽度

时间:2011-08-09 06:13:48

标签: javascript jquery css

如何设置“DOP_ThumbnailGallery_Container”以获得父容器的宽度

$('.DOP_ThumbnailGallery_Container', Container).width($(Container).width());

我试过这种方式/ \但它不起作用,它给出了窗口的宽度;

我甚至试图隐藏溢出的外部容器,但它打破了它!

2 个答案:

答案 0 :(得分:27)

或类似......

http://jsfiddle.net/y3597/2/

$('#object').width($('#object').parent().width());

答案 1 :(得分:2)

你看过jquery的parent函数吗?

您可以这样做:

$('.DOP_ThumbnailGallery_Container').width($('.DOP_ThumbnailGallery_Container').parents("div").width());

来源:http://api.jquery.com/parents/