0

我在 html 中尝试过

 <?php while (have_posts()) :the_post(); ?>
  <div class="product-content">
   <?php if ($len > 122): ?>
   <?php echo $sub ."........"; ?>
   <p class="invisible"><?php echo $cont; ?> </p>
   <?php else: ?>
   <?php echo $sub ?>
   <?php endif; ?>
 </div>
     <?php endwhile; ?>

在 jquery 中作为

$(".product-content").click(function(){
    var t= $(this p).text();

或者

$(".product-content").click(function(){
    var t= $(this ".invisible").text();
4

3 回答 3

3
var t = $(this).find('p').text();
于 2013-04-26T06:01:09.437 回答
1

为什么不直接调用呢?

$('.product-content').click(function(){ 
    $('.invisible').text();
});
于 2013-04-26T06:05:37.197 回答
1

尝试如下使用:

$(this).children("p.invisible").text()
于 2013-04-26T06:14:05.177 回答