如果您查看我的代码..单击父项会隐藏子项。我想要它做的是,能够href
在父级之外创建一个,并将其作为触发子级隐藏功能的一个。我可以通过分配 ID 轻松实现这一点,但我想知道如何使用它来实现这一点,$(this)
以便可以重复使用?
onClick $(this)
链接 - 目标$(this)
父 div - 隐藏$(this)
子 div
<div class="trigger-collapse">
<h1>Anything here?</h1>
<div class="content-collapse">
<h4>Hello</h4>
<p>We’re working really hard to not act like other wireless carriers.
At T‐Mobile you will always get fair and simple pricing, anytime upgrades,
a fast nationwide 4G network, no annual contracts, no overages and no
restrictions. Ever.
</p>
</div><!-- content collapse -->
</div> <!-- trigger collapse -->
到目前为止的 jQuery 脚本
$('.trigger-collapse').click(function() {
$(this).children('div.content-collapse').toggle()
});