我有以下 HTML:
<div id="wrapper">
<div class="p1">
<a href="#" class="quickFlipCta"><img src="Test Pictures/QuestionMark.gif" /></a>
</div>
<div class="p2">
<a href="#" class="quickFlipCta"><img src="Test Pictures/flower.gif" /></a>
</div>
</div>
我有一个在用户单击链接时启动的功能:
$('a').click(function(){
//some code here
});
在函数中,我想访问“包装器”div。这样做的最佳方法是什么?我试过了:
$('a').click(function(){
$(this).parent().parent().
//modification to wrapper
});
但这似乎不起作用。