如何与加载的php文件进行交互?

时间:2012-06-01 07:12:52

标签: php jquery click load

$('#offer').click(function() {
    $("<br><br><strong>Please wait...</strong>").appendTo($("#results"));
    $('#results').load("fulfill.php");

});

$("#employees tr").live("click", function() {
    var id = $(this).find('id').attr('id');
    alert(id);

我在fulfill.php文件中有一个动态表。加载时,我希望能够单击任何行并获取id值。它加载正常,我可以点击响应。我无法获得id值。

1 个答案:

答案 0 :(得分:1)

更改此行

 var id = $(this).find('id').attr('id');

var id = $(this).attr('id');

如果您需要tr的ID。

你应该考虑使用$.on,因为$ .live现在已经折旧了。