Показать сообщение отдельно
  #7 (permalink)  
Старый 11.02.2023, 22:19
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,075

Сообщение от royko666
Ваш код, к сожалению, не срабатывает.
где ваш код?
[html run]
... минимальный код страницы с вашей проблемой
[/html]

О том, как вставить в сообщение исполняемый javascript и html-код, а также о дополнительных возможностях форматирования - читайте http://javascript.ru/formatting.
<!DOCTYPE html>
<html>

<head>
    <title>Untitled</title>
    <meta charset="utf-8">
    <style type="text/css"> tr.empty td{
        background-color: #FF00FF;
         color: #FFFFFF;
    }

    </style>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
    <script>
        $(function() {
            $('tr:contains("Waiting"),tr:contains("Success")').addClass("empty");
        });
    </script>
</head>

<body>
    <table>
        <tr class="history__row">
            <td class="history__cell">94OX5DPJ8L</td>
            <td class="history__cell">2023-02-06</td>
            <td class="history__cell">add</td>
            <td class="history__cell">1000</td>
            <td class="history__cell">ultrapays</td>
            <td class="history__cell">
                Waiting
            </td>
        </tr>
        <tr class="history__row">
            <td class="history__cell">94OX5DPJ8L</td>
            <td class="history__cell">2023-02-06</td>
            <td class="history__cell">add</td>
            <td class="history__cell">1000</td>
            <td class="history__cell">ultrapays</td>
            <td class="history__cell">
                test
            </td>
        </tr>
        <tr class="history__row">
            <td class="history__cell">94OX5DPJ8L</td>
            <td class="history__cell">2023-02-06</td>
            <td class="history__cell">add</td>
            <td class="history__cell">1000</td>
            <td class="history__cell">ultrapays</td>
            <td class="history__cell">
                Success
            </td>
        </tr>
    </table>
</body>

</html>
Ответить с цитированием