Public Access
0
0
Files
blanks/js/forma.md
2026-04-27 15:05:59 +00:00

11 lines
531 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Работа с формой
- Установить значене выпадающего списка по определенному значению
```js
const select = tr.querySelector("td.select_status").firstElementChild // нахдим TD где находится список
const textToFind = 0001 // Элемнт котоый нужно найти в списке у выбрать его
select.selectedIndex = [...select.options].findIndex(option => option.value === textToFind); // Поиск по value
```