Показать сообщение отдельно
  #7 (permalink)  
Старый 28.03.2024, 12:00
Кандидат Javascript-наук
Отправить личное сообщение для od0201 Посмотреть профиль Найти все сообщения от od0201
 
Регистрация: 07.05.2020
Сообщений: 108

добрый день
есть еще одна проблема с вводом в input
я даже класс меняю, но данные не сохраняются
визуально все ок
const qwewqe=()=>{
  let timePause=200
  const phrase=document.querySelector('input#phrase')
  phrase.value='234'
  phrase.classList.remove('mui--is-untouched')
  phrase.classList.add('mui--is-touched')
  const event= new Event('change', { bubbles: true })
  phrase.dispatchEvent(event)
}


{/* <input type="text" id="phrase" name="phrase" placeholder="Binding Phrase" class="mui--is-untouched mui--is-dirty mui--is-not-empty"></input> */}
{/* <input type="text" id="phrase" name="phrase" placeholder="Binding Phrase" class="mui--is-dirty mui--is-not-empty mui--is-touched"></input> */}
Ответить с цитированием