从Chrome的检查员看,我可以看到该类正在添加,但它似乎没有做任何事情。
鉴于这种行为,听起来很可能是你的 .alert-highlight class不够具体,无法覆盖Datatable的默认样式。
.alert-highlight
要解决此问题,您需要使规则更具体。像这样的东西,例如:
#container table#foo .data td.alert-highlight { -webkit-animation: yellow-fade 2s ease-in 1; animation: yellow-fade 2s ease-in 1; }