我需要检索单击单元格上方单元格的底部边框宽度.
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"));
最佳答案
原文链接:https://www.f2er.com/jquery/428587.html