1

我有一个 HTML 代码:

<div class="content">
 blablabla
</div>

<a href="#" class="show">Show hidden content</a>

<a href="#" class="hide">Hide content</a>

我需要 Jquery 代码来显示或隐藏 div“内容”,但我需要使用该代码的代码<?php the_ID (); ?>将在帖子循环中使用,所以我需要唯一的 ID。

前任。:<div class="content-<?php the_ID (); ?>">

有任何想法吗?

4

1 回答 1

1

尝试这个:

$('.show').click( function(){
    $('.content-<?php the_ID (); ?>').show();
});

$('.hide').click( function(){
    $('.content-<?php the_ID (); ?>').hide();
});
于 2013-04-17T18:06:03.123 回答