Как реализовать, чтобы данный скрипт срабатывал раз в 6сек.?

113
09 сентября 2021, 08:40

Как реализовать, чтобы данный скрипт срабатывал раз в 6 сек.?

$(function() { 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/Продажи/g, "Оплаты") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/продажи/g, "оплаты") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/Продажа/g, "Оплата") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/продажа/g, "оплата") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/заказа/g, "квитанции") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/Заказа/g, "Квитанции") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/Заказ/g, "Квитанция") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/заказ/g, "квитанция") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/балло/g, "балл.") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/товар/g, "квитанция") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/Товар/g, "Квитанция") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/товара/g, "квитанции") 
  }); 
  $('#transactions_filters, #transactions_cont').html(function() { 
    return $(this).html().replace(/Товара/g, "Квитанции") 
  }); 
});

Answer 1

setInterval(() => { 
  $(function() { 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/Продажи/g, "Оплаты") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/продажи/g, "оплаты") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/Продажа/g, "Оплата") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/продажа/g, "оплата") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/заказа/g, "квитанции") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/Заказа/g, "Квитанции") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/Заказ/g, "Квитанция") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/заказ/g, "квитанция") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/балло/g, "балл.") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/товар/g, "квитанция") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/Товар/g, "Квитанция") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/товара/g, "квитанции") 
    }); 
    $('#transactions_filters, #transactions_cont').html(function() { 
      return $(this).html().replace(/Товара/g, "Квитанции") 
    }); 
  }); 
}, 6000);

READ ALSO
C++, Google Tests, утечки макетных объектов и testing::Mock::AllowLeak()

C++, Google Tests, утечки макетных объектов и testing::Mock::AllowLeak()

Я пытаюсь поправить тесты (Google Tests), которые писал не я, и у меня есть несколько вопросов, на которые я не смог найти ответы

113
Нужна помощь с C++

Нужна помощь с C++

Почему выводится адрес, а не числа?

86
C++ std::list использование памяти

C++ std::list использование памяти

Только начинаю работать с std::list в Arduino (компилятор C++ 11) Нужно положить в std::list класс:

104
Как сделать progress bar?

Как сделать progress bar?

Выполняется сортировка в потокахВ любой момент из переменной last_index я могу узнать сколько отсортированных элементов уже есть

259