在jquery中如何获取使用复选框选择的表的特定行的值?

时间:2013-08-05 09:15:52

标签: javascript html jsp jquery

这是我的jsp:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Insert title here</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>

</head>
<body>
<table id="one" style="border:1px solid red;">
    <caption>Table 1</caption>
<thead>
<tr>
<th></th>
<th >ID</th>
<th> Name</th>
<th>System</th>
</tr>
</thead>
    <tbody>
      <tr>
        <td><input type="checkbox" /></td>
        <td>12</td>
        <td>Sam</td>
        <td>FSS</td>
     </tr>

     <tr>
        <td><input type="checkbox" /></td>
        <td>87</td>
        <td>Harry</td>
        <td>MSS</td>
     </tr>
     <tr>
        <td><input type="checkbox" /></td>
        <td>23</td>
        <td>Rita</td>
        <td>MVV</td>
     </tr>
     <tr>
        <td><input type="checkbox" /></td>
        <td>65</td>
        <td>Tom</td>
        <td>RDD</td>
     </tr>   
   </tbody>
</table>

<br><hr><br>
<button id="add">Add</button>
</body>
</html>

这里,当我点击添加按钮时,我想获得在不同变量中检查的相应行的所有值,即id,name&amp;应包含已检查值的系统。

我希望这些值存储在String(而不是map)中。 你能否建议我使用jquery / js来实现以下目标

更新

如果我有一个隐藏字段以及复选框,我该如何获取其值? 例如

<td>
<input type="checkbox" />
<input type="hidden" value="secret" id="alertTyp" />
</td>

6 个答案:

答案 0 :(得分:1)

试试这个:

var stringresult = '';
$('#add').on('click', function () {
    $('input:checked').each(function () {
        $this = $(this);
        var one = $this.parent().siblings('td').eq(0).text();
        var two = $this.parent().siblings('td').eq(1).text();
        var three = $this.parent().siblings('td').eq(2).text();
        alert(one + ' ' + two + ' ' + three);

        //or just 
        stringresult += $this.parent().siblings('td').text();
    });
    console.log(stringresult);
});

<强> DEMO HERE

答案 1 :(得分:1)

如果你想要<td>中的字符串,这里是jQuery代码:

var str = "";
$('#add').click(function(){
    $('input:checkbox:checked').filter(function(){
        str = $(this).closest('tr').text();
    });
});

DEMO

答案 2 :(得分:1)

请看我的小提琴解决方案

[http://jsfiddle.net/a4WMc/]

http://jsfiddle.net/a4WMc/

答案 3 :(得分:1)

试试这个:

$('#alertTyp').val()

答案 4 :(得分:0)

您可以遍历所有行...问题是性能如何:

var str = '';
$('#one').find('tbody').find('tr').each(function()
{
    if($(this).children().eq(0).attr('checked') == 'checked')
    {
        $(this).find('td').each(function()
        {
         str += $(this).text();
        });
    }
});

或类似的东西......我没有时间来测试这个抱歉。

答案 5 :(得分:0)

我会做这样的事情(未经测试的代码!!!):

var myRow = $('input[type="checkbox"]:checked').parents('tr:first');
var result;
myRow.children('td').each(){
    result += $(this).html() + "|";
}

如果只有1个选中的复选框,这可能会有效...否则您需要循环选中所有选中的复选框以获取值...