jQuery-如何选择行的ID

时间:2019-03-20 11:51:58

标签: javascript php jquery

我是使用jquery的新手。我有一张桌子,如下:

<td id="dropmenu">
    <?php echo $user->first_name;?>
</td>

<td id="dropmenu" >
    <?php echo $user->last_name; ?>
 </td>

 <td>
    <?php echo $user->email; ?>
 </td>

 <td id="userid">
    <?php echo  $user->userid; ?>
 </td>

在我的js文件中,我有以下内容。我在#dropdown下添加了一个编辑和删除链接。我需要从该行中获取用户ID,以放入Edit之类的编辑链接。一切正常,但我不知道如何获取用户标识号。

$(document).ready(function() {
$("#table-list-users tr td#dropmenu").hover(function(){

    // get the value of the row id.  This will be used in the edit href later on
    var data = $(this).parent('td#userid').text();
    console.log(data);

    $(this).append('<div> <a href="/edit/data <-that will be the id">edit</a> | view | delete </div>') }, function(){
        $(this).children("div").remove();
    })
});

0 个答案:

没有答案