在我的网页中有以下配置
<div class="results_list">
<div class="bg_color shadowy item_wrapper">
<div class="not_shown">some text here...</div>
<div class="social_and_download">
<div class="play_div">
<a class="play" href="#">play</a>
</div>
</div>
</div>
<div class="bg_color shadowy item_wrapper">
<div class="not_shown">other text text here...</div>
<div class="social_and_download">
<div class="play_div">
<a class="play" href="#">play</a>
</div>
</div>
</div>
</div>
,有许多div.item_wrapper元素,每个元素都有一个div.not_shown子元素,我想通过在单击相应的a.play链接时更改其类来使其可见。我能想到的最好的是:
<script type="text/javascript">
$(document).ready(function() {
$("a.play").click(function () {
$(this).closest("div.item_wrapper").find("div.not_shown").addClass('shown').removeClass('not_shown');
});
});
它不工作。你能告诉我我做错了什么吗?10倍