2

这是我的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 和 system。

我希望将这些值存储在字符串(而不是映射)中。您能否建议我使用 jquery / js 来实现以下功能

更新

如果我有一个隐藏字段和复选框,我如何获得它的值?例如

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

6 回答 6

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);
});

在这里演示

于 2013-08-05T09:27:25.110 回答
1

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

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

演示

于 2013-08-05T09:27:58.113 回答
1

尝试这个:

$('#alertTyp').val()
于 2013-08-23T08:59:41.160 回答
1

请参阅我的小提琴以获取解决方案

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

http://jsfiddle.net/a4WMc/

于 2013-08-05T09:34:36.187 回答
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();
        });
    }
});

或类似的东西......我没有时间自动柜员机来测试这个对不起。

于 2013-08-05T09:24:38.597 回答
0

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

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

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

于 2013-08-05T09:24:45.877 回答