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

10 lines
407 B
Markdown
Raw 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
```