所以我使用的是Select2插件,在表单中发布多个选项时遇到问题.我可以选择多个选项,但只能传递一个:
原文链接:https://www.f2er.com/php/133101.html<form> <select multiple name="message-from-select" id="message-from-select" class="select2"> <option value="janedoen@example.com">janedoen@example.com</option> <option value="antonius@example.com" selected="selected">antonius@example.com</option> <option value="michael@example.com" selected="selected">michael@example.com</option> <option value="bayjack@example.com">bayjack@example.com</option> <option value="stacy@example.com">stacy@example.com</option> </select> </form>
var_dump($_POST['message-from-select']);
我只得到一根绳子,即:
string 'michael@example.com' (length=19)
我需要转到隐藏的输入格式吗?