const openPops = document.querySelectorAll('.open__popup');
const closePop = document.querySelector('.popup__close');
const popUps = document.querySelectorAll('.popup');
openPops.forEach((openPop, index) => {
openPop.addEventListener('click', function (e) {
e.preventDefault();
popUps[index].classList.add('active');
});
});
closePop.addEventListener('click', () => {
popUps.forEach(popUp => {
popUp.classList.remove('active');
});
});
function showToast (text) {
let toastContainer = document.getElementById('toast-container');
let toastEl = document.createElement('div');
toastEl.classList.add('toast');
toastEl.setAttribute('role', 'alert');
toastEl.setAttribute('aria-live', 'assertive');
toastEl.setAttribute('aria-atomic', 'true');
let toastBody = document.createElement('div');
toastBody.classList.add('toast-body');
toastBody.innerText = text;
toastEl.appendChild(toastBody);
toastContainer.appendChild(toastEl);
let bootstrapToast = new bootstrap.Toast(toastEl);
bootstrapToast.show();
}
<div id="toast-container" aria-live="polite" aria-atomic="true"></div>
const text = "Некоторый текст 10 января 2023 г. еще какой-то текст 15 Марта 2022 г.";
const regex = /(\d{1,2}\s(?:Январ[ь|я]|Феврал[ь|я]|Март[а]?|Апрел[ь|я]|Май[а]?|Июн[ь|я]|Июл[ь|я]|Август[а]?|Сентябр[ь|я]|Октябр[ь|я]|Ноябр[ь|я]|Декабр[ь|я])\s\d{4}\sг\.?)/g;
const matches = text.match(regex);
console.log(matches);
function openSearch() {
document.getElementById("myOverlay").style.display = "block";
}
function closeSearch() {
document.getElementById("myOverlay").style.display = "none";
}
document.querySelector("#openSearchBtn").addEventListener("click", openSearch);
document.querySelector("#closeSearchBtn").addEventListener("click", closeSearch);
$(document).ready(function() {
$('#openSearchBtn').click(function() {
$('#myOverlay').css('display', 'block');
});
$('#closeSearchBtn').click(function() {
$('#myOverlay').css('display', 'none');
});
});
<button onclick="openSearch()">Открыть поиск</button>
<button onclick="closeSearch()">Закрыть поиск</button>
const puppeteer = require('puppeteer');
const axios = require('axios');
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
const api = 'api';
await page.goto(api);
const headers = await page.evaluate(() => {
return {
Authorization: 'Bearer *',
login: 'login',
password: 'password',
};
});
const data = await axios.get(api, { headers });
console.log(data.data);
await browser.close();
})();
const array = [0, 1]; // Исходный массив
const image = new Image(); // Создаем объект изображения
image.src = 'path/to/image.jpg'; // Указываем путь к изображению
function replaceOneWithImage(arr) {
for (let i = 0; i < arr.length; i++) {
if (arr[i] === 1) {
arr[i] = image; // Заменяем значение 1 на объект изображения
}
}
return arr;
}
const newArray = replaceOneWithImage(array); // Получаем новый массив
console.log(newArray); // Выводим результат в консоль