我有一个HTML代码:
<div class="content">
blablabla
</div>
<a href="#" class="show">Show hidden content</a>
<a href="#" class="hide">Hide content</a>
我需要Jquery代码来显示或隐藏div“content”,但是我需要使用该代码来处理<?php the_ID (); ?>
它将在post循环中使用,所以我需要unicue ID。
例:<div class="content-<?php the_ID (); ?>">
有什么想法吗?
答案 0 :(得分:1)
试试这个:
$('.show').click( function(){
$('.content-<?php the_ID (); ?>').show();
});
$('.hide').click( function(){
$('.content-<?php the_ID (); ?>').hide();
});