从上面的单元格获取数据
我需要检索单击的单元格上方单元格的底部边框宽度。
var $this = $(this);
var col = $this.parent().children().index($this);
var row = $this.parent().parent().children().index($this.parent());
var bordWidth= ($this.parents('tr:eq('+(row-1)+')').find('td:eq('+col+')').css("border-bottom-width"));
I need to retrieve the bottom border width of the cell above the clicked cell.
var $this = $(this);
var col = $this.parent().children().index($this);
var row = $this.parent().parent().children().index($this.parent());
var bordWidth= ($this.parents('tr:eq('+(row-1)+')').find('td:eq('+col+')').css("border-bottom-width"));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
.prev()
将获取前一个tr
元素,然后使用.children()
获取所有td
' s 并使用 eq() 方法获取所需的 td。Try this.
.prev()
will get the previoustr
element and then using.children()
get all thetd
's and get the required td usingeq()
method.