jQuery('td[class=bgoff]').each(function() { var td = jQuery(this); ... no apply selector to "this" only });
我正在使用html中的表格数据并尝试解析每个TD的内容(它们不是唯一可识别的).
使用XPath,我可以将“this”的路径添加到其他选择中.
我怎样才能用jQuery实现这个目标?