使用jQuery

时间:2016-02-25 23:15:43

标签: php jquery variables

这会成功提供当前点击链接ID的提醒。

jQuery('a.inline').live('click',function() {
 jQuery(this).attr('href', 'javascript:void(0)');
 alert(this.id);
});

然而,我没有收到警报,而是更新了该页面上我可以回应的变量。例如,我想使用这样的东西......

<p><?php echo $theechoedid; ?></p>

我真的不想将此作为div的值来回显,因为我将在循环中使用echo'd值,如下所示:

<?php $loop = new WP_Query( array( 'p' => '424', 'post_type' => 'product', 'posts_per_page' => 1 ) ); ?>

感谢您的帮助。

3 个答案:

答案 0 :(得分:0)

如果我正确理解了这个问题,那么你实际上并不需要php。只需使用javascript更改内容。

在html中添加一个id,这样就更容易抓住..

<p id="id-goes-here"></p>

..然后改变它。

jQuery('a.inline').live('click',function() {
    jQuery(this).attr('href', 'javascript:void(0)');
    jQuery( "#id-goes-here" ).html( this.id );
});

答案 1 :(得分:0)

链接1 链接2

<script>
$(function() {
  $('.temp).bind('click', function() {
    alert($(this).attr('id');
  }
});

这应该有用。

贾斯汀

答案 2 :(得分:0)

最后我不得不使用Ajax调用。感谢大家的帮助。