使用the_ID显示/隐藏内容的Jquery脚本?

时间:2013-04-17 18:03:58

标签: wordpress hide show

我有一个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 (); ?>">

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

试试这个:

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

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