我有一个从 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
有什么建议吗?