Jquery 获取table当前行内容

$("a[name=‘checkOriginal‘]").click(function () {    var parent = $(this).parent().parent().find("td");    var moduleEnum = parent.eq(7).text();    if(moduleEnum==""){    }    alert(moduleEnmu);});



原文地址:https://www.cnblogs.com/austinspark-jessylu/p/8425829.html

时间: 2024-10-08 17:54:22

Jquery 获取table当前行内容的相关文章

关于Jquery获取Table中td内的内容

$(this).children().eq(1).text()获取的是显示的值$(this).children().eq(1).html()获取的是<td></td>之间的所有内容$('.trSelected',grid).find("td").eq(7).text();获取的是选中的某行的内容 遍历表<table id="gird"..... $("#grid tr").each(function() {     

Jqeury获取table当前行与指定列

今天遇到了一个Jqeury获取table当前行与指定列的问题: 大概的实现要求是一个页面中,上面有几个input输入框,下面有一个table,当在输入框中输入内容的时候,点击添加按钮的时候,在下面table中追加对应的代码,同时每行有 编辑.删除的操作.类似下面的页面操作: 下面是addTable(),就是点击按钮之后追加tr的操作 1 function addTable() { 2 ------ 3 //得到每个input的值 4 var goodsClassVar = $("#goodsCl

jquery遍历table tr td内容

$("#result").find("tr").each(function () { $(this).find("td").each(function () { if ($(this).text().indexOf("惠") > 0) { var m = $(this).text().toString(); $(this).css("width", "165px"); $(this

javascript获取table当前行的内容

1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="gb2312"> 5 <meta name="author" content="http://www.yuanquanshuqian.com/" /> 6 <title>源泉书签</title> 7 8 <script> 9 //删除行;(obj代

jQuery获取Table某列的值

在写此篇博文时,发现在以前曾写过<获取DataTable选择第一行某一列值>http://www.cnblogs.com/insus/p/5434062.html . 但是与此篇所说的完全不一样.这篇Insus.NET需要的是jQuery去获取html table的某一行某一列的数据. 如下表: Html code: <table> <tr> <th style="width:10px;"><input id="Selec

正则表达式获取TABLE里的内容

//过滤\n 转换成空            String withoutNString=message.Replace("\n", "");            //过滤\r 转换成空            String withoutRString = withoutNString.Replace("\r", "");            //过滤\t 转换成空            String withoutTSt

用jquery获取单选按钮选中的内容

<label><input name='reason' type='radio' value='您的评论内容涉嫌谣言' />您的评论内容涉嫌谣言</label> <label><input name='reason' type='radio' value='您的评论内容涉嫌网络钓鱼/广告' />您的评论内容涉嫌网络钓鱼/广告</label> <label><input name='reason' type='radi

Jquery更改table中的内容(一)

css部分: .tab{ border:solid 1px #00aaee; text-align: left; margin:20px;}.tab tr{ border-top: solid 1px #00aaee;}.tab tr td,.tab tr th{ border-right: solid 1px #00aaee; height:35px; width: 200px; padding: 0 5px;}.tab tr th{ background: #00aaee; color:#f

jQuery 获取不到 kindeditor 内容 的解决方法

错误写法 :  $('#Content').val(); 正确写法: $(document.getElementsByTagName("iframe")[0].contentWindow.document.body).html()