task-05.js 760 B

12345678910111213141516
  1. // while confirm
  2. // Сделайте цикл с confirm, который продолжается по Отмена и заканчивается по ОК.
  3. const task05block = document.createElement('div');
  4. task05block.style = "border: 2px solid green; border-radius:5px; margin-bottom:10px; padding:10px";
  5. const task05title = document.createElement('h2');
  6. task05title.innerText = 'Task-05 While confirm';
  7. const confirmBtn = document.createElement('button');
  8. confirmBtn.innerText = 'Start input data';
  9. confirmBtn.style = 'margin-bottom:10px';
  10. root.appendChild(task05block);
  11. task05block.appendChild(task05title);
  12. task05block.appendChild(confirmBtn);
  13. confirmBtn.onclick = () => {
  14. while (!confirm('Жмакай. Остановить цикл: ОК'));
  15. }