遍历表中的所有td元素 [英] loop through all td elements in a table

查看:151
本文介绍了遍历表中的所有td元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将如何遍历表中的所有td元素?我需要找到每个td的ID,并将其与一个值进行比较.任何帮助将不胜感激!

How would I loop through all the td elements in a table? I need to find the id of each td and compare it against a value. Any help would really be appreciated!

推荐答案

使用 jQuery.each 循环所有td的:

$("td").each(function() {
    var id = $(this).attr("id");

    // compare id to what you want
});

这篇关于遍历表中的所有td元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆