JQ如何取table中某一行的数据

JQ如何取table中某一行的数据,第1张

可以在鼠标经过table时,获得当前行与列的值。页面如下所示:

具体 *** 作就是点击“删除”按钮,然后调用jquery插件页面,这时候需要获得相应行的“ID”进行 *** 作。

jQuery 遍历的 eq() 方法将匹配元素集缩减值指定 index 上的一个,index表示元素的位置(最小为 0)。所以获取Table第 i 行第 j 列的内容可用如下代码

$("table")find("tr")eq(i-1)find("td")eq(j-1)text(); // 注意-1是因为index从0开始计数

实例演示

创建Html元素

<div class="box">

<span>填写行列数,点击按钮后获取对应位置的数值:</span><br>

<div class="content">

<table>

<tr><td>1</td><td>2</td><td>3</td></tr>

<tr><td>4</td><td>5</td><td>6</td></tr>

<tr><td>7</td><td>8</td><td>9</td></tr>

</table>

</div>

第<input type="text" name="row">行,第<input type="text" name="col">列<input type="button" class="btn" value="确定">

</div>

添加css样式

divbox{width:300px;height:250px;padding:10px 20px;border:4px dashed #ccc;}

divbox>span{color:#999;font-style:italic;}

divcontent{width:250px;height:100px;margin:10px 0;padding:5px 20px;border:2px solid #ff6666;}

input[type='text']{width:35px;height:30px;border:1px solid #99ccff;}

input[type='button']{width:100px;height:30px;margin:10px;border:2px solid #ebbcbe;}

selected{background:#99ccff;}

table{border-collapse:collapse;}

td{padding:5px 10px;border:1px solid green;}

编写jquery代码

$(function(){

$("input:button")click(function() {

row = $("input[name='row']")val() - 1;

col = $("input[name='col']")val() - 1;

val = $("table")find("tr")eq(row)find("td")eq(col)text();

alert(val);

});

})

观察显示效果

aspnet中获取repeater中的数据的方法是使用DataBinderEval循环获取。

Repeater 控件用于显示重复的项目列表,这些项目被限制在该控件。Repeater 控件可被绑定到数据库表、XML 文件或者其他项目列表。

以下的完整的读取Repeater的值的方法:

<%@ Import Namespace="SystemData" %>

<%@ Import Namespace="SystemDataSqlClient" %>

<html>

<script language="C#" runat="server">

void Page_Load(Object sender, EventArgs e)

{

// 创建连接到pubs数据库

// 访问本地的数据库

SqlConnection myConnection = new SqlConnection("server=localhost;" +

"database=pubs;Trusted_Connection=Yes");

// 使用select语句查询title表中的所有记录

SqlDataAdapter myCommand = new SqlDataAdapter("SELECT FROM" +

" Titles", myConnection);

// 创建并且填充结果集

DataSet ds = new DataSet();

myCommandFill(ds);

// 绑定数据到MyRepeater

MyRepeaterDataSource = ds;

MyRepeaterDataBind();

}

</script>

<%-- 循环读取 MyRepeater中的数据--%>

<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">

<ASP:Repeater id="MyRepeater" runat="server">

<HeaderTemplate>

<Table width="100%" style="font: 8pt verdana">

<tr style="background-color:DFA894">

<th>

Title

</th>

<th>

Title ID

</th>

<th>

Type

</th>

<th>

Publisher ID

</th>

<th>

Price

</th>

</tr>

</HeaderTemplate>

<ItemTemplate>

<tr style="background-color:FFECD8">

<td>

<%# DataBinderEval(ContainerDataItem, "title") %>

</td>

<td>

<%# DataBinderEval(ContainerDataItem,"title_id") %>

</td>

<td>

<%# DataBinderEval(ContainerDataItem, "type") %>

</td>

<td>

<%# DataBinderEval(ContainerDataItem, "pub_id") %>

</td>

<td>

<%# DataBinderEval(ContainerDataItem,

"price", "{0:c}") %>

</td>

</tr>

</ItemTemplate>

<FooterTemplate>

</Table>

</FooterTemplate>

</ASP:Repeater>

</body>

</html>

<tr id="del">

<td>1</td>

</td>2</td>

</tr>

如何点击删除tr:

$(function(){

$("#del")click(function(){

$(this)remove();

});

})

至于后面td *** 作不是很明白,希望楼主下次问问题之前把问题表述清楚

以上就是关于JQ如何取table中某一行的数据全部的内容,包括:JQ如何取table中某一行的数据、如何用Jquery获取Table指定行中指定列的数值、asp.net中怎样获取repeater中的数据等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9436629.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存