关于使用jQuery如何获取table表格点击行的值

2021-03-02 17:28

阅读:678

标签:applet   VID   minimal   tail   checkbox   set   bottom   ash   ica   

表格美化
Info Header 1 Info Header 2 Info Header 3 操作
Text 1A Text 1B Text 1C
Text 2A Text 2B Text 2C
Info Header 1 Info Header 2 Info Header 3
Text 1A Text 1B Text 1C
Text 2A Text 2B Text 2C
Text 3A Text 3B Text 3C
Text 4A Text 4B Text 4C
Text 5A Text 5B Text 5C

html代码如下

Info Header 1 Info Header 2 Info Header 3 操作
Text 1A Text 1B Text 1C
Text 2A Text 2B Text 2C

js代码:

$(‘.Select‘).click(function(event) {
    var tr = $(this).closest("tr")
    var colData = tr.find("td:eq(1)").text()
    alert(colData)
});

关于使用jQuery如何获取table表格点击行的值

标签:applet   VID   minimal   tail   checkbox   set   bottom   ash   ica   

原文地址:https://www.cnblogs.com/zz-eternity/p/14322568.html


评论


亲,登录后才可以留言!