我们面临两点 j。 请看一下:
我们正在使用下表:
<tr id="row-5">
<td></td>
<td><a class="delete" href="#">Delete</a></td>
</tr>
我们正在使用以下法典:
$(function () {
$( .delete ).click(function () {
var id = $(this).parents("tr").attr("id");
var info = id= + id;
$.ajax({
type: "POST",
url: "delete.php",
data: info,
success: function () {}
});
return false;
});
});
因此,我们的问题是......
- How do we get the correct value of id(5) instead of row-5?
- Should we use each function on jquery code? If yes, how do we do that?
感谢您的支持。