我正在使用 jquery ui 将每个图像 div 定位在其父 div 中。像这样:
<div class="section">
<div class="image"></div>
</div>
我正在尝试使用 jquery 获取父级。这些是我正在使用的选项:
$(".image").each(function() {
var $this = $(this), $target = $this.parent();
$this.position({
my: "center",
at: "center",
of: $target
});
});
使用 jquery 作为选项是否存在语法问题?任何帮助都会很棒。