作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要 serializeArray()
每次都返回选择框中的所有项目,而不仅仅是当前选定的项目,因为我的选择框的内容可以增长或缩小。
<select multiple="multiple" id="selectionBox" >
<option value="email1@test.com">Test1</option>
<option value="email2@test.com">Test2</option>
<option value="email3@test.com">Test3</option>
<option value="email4@test.com">Test4</option>
<option value="email5@test.com">Test5</option>
</select>
...
//Select 1 item in the select list box
formArray = $("#selectionBox").serializeArray();
alert(formArray.length); // this will be 1
//Select 5 items in the select list box
formArray = $("#selectionBox").serializeArray();
alert(formArray.length); // this will be 5
我需要它始终返回完整的 5。
最佳答案
我认为serializeArray
只是序列化那些将由表单发送的值。如果您想要所有选项,则必须自己编写代码,如下所示:
var arr = [], $select = $("#selectionBox"), name = $select.attr("name");
$select.find("option").each(function() {
arr[arr.length] = { name: name, value: this.value };
});
关于jquery - SerializeArray() 返回多选框中的所有项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8358143/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!