我想有一个红色的删除线,但仍然以黑色结尾。这是我尝试的:

.redRow {
    text-decoration: line-through;
    color: red;
}


JavaScript代码是:

function getCurrentBinRow(elem) {
    $(elem).closest('tr').toggleClass('redRow');
}

最佳答案

使用Java风格的文字装饰,

document.getElementById('redRow').style.textDecoration = "line-through";

关于jquery - 如何使用javascript将文本装饰删除线的css设置为红色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29274597/

10-13 02:36