用jquery抓取div中的文本

时间:2010-04-27 22:45:40

标签: jquery

  <a class="source" href="jquery-lead.php?source=<?=$src;?>">3</a>

<script type="text/javascript">
    $("a.source").live('click', function() { 
        $("#results").load(this.href, { page: $(this).text() });
      return false;
    });
    $("a.source:first").click()
</script> 

我能够将$ src变量传递给我的php脚本,但我也想传递标签中的任何内容。在这种情况下,“3”,这将是一个分页..

2 个答案:

答案 0 :(得分:2)

已更新评论 - 您可以这样做:

$(function() {
  $("a.source").live('click', function() { 
    $("#results").load(this.href, { page: $(this).text() });
    return false;
  });
  $("a.source:first").click();
});

这使用.load(url, data),在你的php中,page变量现在可用......或者你想要它调用的任何内容,只需适当地重命名。

答案 1 :(得分:0)

$(this).text();