我正在尝试通过 Ajax 提交整个多选(即 $('#tags_selected'))
$.ajax({
url: base_url + 'companies/editTagsAsync',
type: 'post',
dataType: 'json',
data: $('#tags_selected').val(),
success: function (json) {
console.log(json);
}
});
但它只发送选择的值。我想传递选择框中的所有值。可能有一个简单的解决方案,但我只是不知道......