我有一个 HTML 表和以下脚本,class
根据单元格的内容向单元格添加特定内容。
现在,我想仅计算带有 的项目,并触发带有这些项目数量的class = active
模态框 ( )。有什么建议吗?autoOpen: true
<script>
$('td').each(function() {
var $this = $(this)
if ($this.text().match(new RegExp(/^[0-9][A-Z]/)) !== null ) {
$this.addClass('active');
}
if ($this.text().match(new RegExp(/^c[0-9]/)) !== null ) {
$this.addClass('none');
}
});
</script>
这是一个更有效的代码,它返回切换的活动单元格的数量