我有一个标准循环:
<article class="somepost">
<?php $a = get_the_title(); echo $a; ?>
</article>
当我点击某篇文章(class =“somepost”)时,我如何获得某些帖子的标题价值
$('.somempost').click(function(){ ??? });
感谢名单。
答案 0 :(得分:1)
首先,我将标题设置为文章数据属性:
<?php $a = get_the_title(); ?>
<article class="somepost" data-title="<?php echo $a; ?>">
<?php echo $a; ?>
</article>
然后在你的jQuery中,将标题设置为如下变量:
$('.somepost').click(function(){
var the_title = $(this).data('title');
});