标签: javascript jquery-selectors
我正在尝试获取类名称包含bp-table-cell作为子字符串的所有div的列表。
bp-table-cell
这会返回类名正好为bp-table-cell
document.getElementsByClassName('bp-table-cell')
我发现这解决了使用jquery并且需要在不使用jquery的情况下解决
$("div:regex(class, .*bp-table-cell.*)")