Я думал, что вы могли бы использовать JavaScript (JS) как способ получить выбранные элементы и вставить их в другое место (где вы хотите).
Попробуйте это:
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<select id="select" name="users" multiple="multiple"
required>
<option class="option" value="1">1</option>
<option class="option" value="2">2</option>
<option class="option" value="3">3</option>
</select>
Selected items:
<ul>
<li>1</li>
<li>3</li>
</ul>
</body>
</html>
Затем добавьте JS:
// Get the select input
document.getElementByID("select")
// Get the options
document.getElementByClassName("option")
// Get the options that are selected
var print = `.option:[active]`;
// Print (paste) the selected options elsewhere on the page
if print {
document.write(print);
}
Скажите, пожалуйста, работает ли это, а может и нет. В конце концов, мне всего 8 лет, и я только начинаю изучать веб-разработку.