jquery - 得到父母的父母?

时间:2009-12-11 06:04:51

标签: jquery image parent scale

我正在使用jquery.cjobjectScaler插件(link text)并且由于我无法控制的情况,img在div中被超链接...我没有办法“去除”那个标签,我也不能重新排序......

所以,原来的功能是:

$("#productGrid li img").cjObjectScaler({
    destObj: $("#productGrid li img").parent("li"), // must be a jQuery object (required)
    method: "fit", // can either be fit or fill (default fill)
    fade: 800 // if a positive integer, will hide and fadeIn object n duration (default 0)
});

/* CSS for above */

ul#productGrid li {
    position: relative;
    display: block;
    width: 190px;
    height: 150px;
    border: 1px solid #ccc;
    float: left;
    margin-right:
    10px; margin-bottom:
    10px; overflow: hidden;
}

这是我正在尝试使用的版本......

$(".ffts a img").cjObjectScaler({
     destObj: $(".ffts a img").parent("a"),
     method: "fill",
});

/* css for above */
.ffts a {
    width: 550px; 
    height: 300px;
}

/* here's the markup */
<div class="ffts">
     <a href="/img" style="position: relative;">
     <img src="/source/image.jpg" />
     </a>        
</div>

并且,它确实调整了它的大小,但没有调整为ffts设置的尺寸...我已经验证了该样式没有被覆盖,所以不确定从哪里开始......?

2 个答案:

答案 0 :(得分:2)

您的问题不是很明确,但如果您只是想“获得父母的父母”,请使用prev()parents()选择器。

答案 1 :(得分:0)

只需尝试

destObj: $(".ffts>a")