本文介绍了使用jQuery检测最宽的单元格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个具有不同值的表.第一列包含标签.我需要获取最宽标签的宽度.我认为我需要某种循环,但是那又是什么呢?
I have a table with different values. First column contains labels. I need to get the width of the widest label. I assume I need some sort of a loop, but then what?
$("#myTable td:nth-child(1)").width();
谢谢.
推荐答案
var w = 0;
$("#myTable tr td:first").each(function(){
if($(this).width() > w){
w = $(this).width();
}
});
这篇关于使用jQuery检测最宽的单元格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!