如何用jquery获得td里边的内容
<td><input type="checkbox" name="id[]" value="{$articleLists.article_id}"/></td>
<td style="text-align:center;" >{$articleLists.sort}</td>
</tr>
php循环出来很多个tr,我想点击某个按钮后,得到选中的多选框的相应的{$articleLists.sort}的内容,选中多个得到多个 展开
jQuery 中使用 text() 或者 html() 函数可以获取td的内容:
$("td").text(); // 或者 $("td").html();
二者区别在于前者返回所选元素的文本内容,后者返回所选元素的内容(包括 HTML 标记)。
下面实例演示:点击按钮后获取所有选中行的td单元格的内容
1、HTML结构
<table id = "test">
<tr><td><input type="checkbox" name="test"></td><td>1</td></tr>
<tr><td><input type="checkbox" name="test"></td><td>4</td></tr>
<tr><td><input type="checkbox" name="test"></td><td>7</td></tr>
<tr><td><input type="checkbox" name="test"></td><td>10</td></tr>
</table>
<input type="button" value="确定">
2、jquery代码
$(function(){
$(":button").click(function() {
str = $(":checkbox:checked").map(function() {
return $(this).parent().siblings('td').text(); // 根据checkbox定位到后面的td,然后使用text()函数获取内容
}).get().join(", "); // 获取内容数组并拼接为字符串
alert(str); // 输出
});
});
3、效果演示
var result = "";
// 查询所有 checked(选中的) input type="checkbox"
$("input:checkbox:checked").each(function(){
// 查询对应的父节点 td 的父节点 tr 下的第 1 个 td(下标从0开始)的 innerHTML
var td = $(this).parent().parent().find("td:eq(1)").html();
// 拼接到 result
result += td + ",";
})
alert(result);
// 当然如果你的页面别的地方也有 checkbox 的话,最好就是指定在某个 table 下找对应的 checkbox 了 , $("#table的id input:checkbox:checked").each(function(){})