буфер данных из таблицы (веб форма) по нажатию на кнопку ?
Смотря в каком формате данные нужно хранить
Ну выгрузите все значение, в строку объедините да положите в буффер
function copyToClipboard() { var copyText = document.getElementById("acquirente-cf"); copyText.select(); document.execCommand("copy"); }
https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API
const copy = (data: string): void => { if (!navigator.clipboard) { const textField = document.createElement("textarea"); textField.textContent = data; document.body.appendChild(textField); textField.select(); document.execCommand("copy"); textField.remove(); } else { navigator.clipboard.writeText(data); } };
Обсуждают сегодня