0

我有一个从 mysql 到 php 的数据表

echo"<table id='tableedit'>"

echo"<tr>";
echo"<td class='get'>";
echo $id;
echo $title;
echo"<tr>";
echo"<td>";

echo"<tr>";
echo"<td class='comments'>";
echo $comments;
echo"</tr>";
echo"</td>";

所以信息看起来像:

ID:1
Title:something
Comments:something..

当用户输入它们时,还有更多。我正在尝试使用户能够使用内联编辑来编辑他们的评论:

 $(document).ready(function() {


    $('#tableedit tr td.comments').click(function () {
     var html = $(this).text();
     var input = $('<input type="text"; />');
    input.val(html);
               $(this).replaceWith(input);
                          $('#tableedit input').focus();
                            $('#tableedit input').blur(function () {

                              var review =(this.value);
               $(this).replaceWith(review);                                   
             //$.post('editcomments.php',{review:review});

            });                              
       });
  });

内联文本编辑工作正常,但问题是我想将评论发布到 mysql 数据,ajax但是我想$id从表中获取每个评论的值。我试过这个,它给了我一个空值

    var id = $(this).(html).parent('#tableedit').find('tr td #get');
alert(id);  //gives a null value

有什么建议吗?

4

1 回答 1

2

您可以添加id作为属性:

echo "<td data-id='$id' class='comments'>";

然后你可以很容易地检索它:

var id = $(this).data('id');
于 2013-04-06T20:39:53.693 回答