1

如何使用 jquery 遍历一组具有数据属性值的元素?我试过这个... alert(variableName); // 有效

    $("SectionATable tr [data-testlog='"+variableName+"']").each(function()
    {
                alert("sectionA log");
    });

萤火虫中没有错误显示....

4

2 回答 2

2

你有一些小的语法错误,试试这个:

$("#SectionATable tr [data-testlog="+variableName+"]").each(function(){
    alert("sectionA log");
});
于 2013-04-15T15:41:23.547 回答
1

属性等于选择器 [name="value"]

这里是选择 http://api.jquery.com/category/selectors/

于 2013-04-15T15:41:48.763 回答