填充<选择>带有一个数组的下拉菜单选择>
我有一个包含 100 多种颜色的列表,位于单独的 中。每个
都有一个唯一的ID。我想使用 jQuery 查找每个 td 的 ID 并将其放入数组中。然后我想使用该数组并创建类似于以下内容的内容:
<select>
<option value="array[0]"> array[0]</option>
<option value="array[1]"> array[1]</option>
...
</select>`
到目前为止我看到的每个示例都需要编码器手动输入数组。我希望找到更有效的东西。
I have a list of over 100 colors in seperate <td>
s. Each <td>
has a unique ID. I would like to use jQuery to find the ID's of every td and put it in an array. Then I would like to use that array and create something similar to the following:
<select>
<option value="array[0]"> array[0]</option>
<option value="array[1]"> array[1]</option>
...
</select>`
Every example I've looked at so far requires the coder to manually type out the array. I'm hoping to find something more efficient.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您只需要数组来填充下拉列表,那么您可以绕过创建数组。
试试这个:
If you need the array just for populating the drop down then you can bypass creating array.
Try this:
你可以这样做:
You could do something like this:
为您提供一个包含所有匹配元素的数组。
然后你可以遍历,为数组的每个元素构建你的选项字符串。
像这样的事情:
如果页面上有其他 tds,请执行类似 $("element#that-is-parent-to-needed-tds td"); 的操作
gets you an array with all the matched elements.
Then you can just traverse, for every element of array you build up your options string.
Something like this:
If you have other tds on the page, do something like $("element#that-is-parent-to-needed-tds td");