原文链接:https://blog.csdn.net/qq846294282/article/details/82427002 (侵删)
<select multiple>不能直接获取value,需要借助该元素的options属性。如下:
<select id="select" multiple> <option value="1">1111</option> <option value="2">2222</option> <option value="3">3333</option> </select > <script> // 获取select元素的options属性 const options = document.querySelector(‘#select‘).options const selectedValueArr = [] for (let i = 0; i < options.length; i++) { // 如果该option被选中,则将它的value存入数组 if (options[i].selected) { selectedValueArr.push(options[i].value) } } // 如果后端需要字符串形式,比如逗号分隔 const selectedValueStr = selectedValueArr.join(‘,‘) // Ajax code here // ... </script>
原文地址:https://www.cnblogs.com/cmz-32000/p/12162811.html
时间: 2024-12-09 21:49:32