JQuery 从列表框中获取所选项目并用逗号分隔
任何人都可以提供更多帮助吗?我在 jsfiddle 上设置了代码...
http://jsfiddle.net/ justinerswell/feDTU/
我需要获取子字符串中的最后一项并向后填充我需要的字段。
谢谢
原始问题
嗨,我在页面上返回了一个列表框,其中包含多个结果,这些结果正在作为字符串解析为值...
<option value="1 Corn Exchange, The Strand, RYE, East Sussex, TN31 7DB, UNITED KINGDOM">
使用 JQuery 我需要做几件事...
- 获取选定值
- 通过逗号
- 循环拆分选定项目的值,并为每个项目设置一个变量,即国家:英国邮政编码:TN31 7DB 等
有人可以帮助我吗?
谢谢
Can anyone offer more help on this I have the code setup on jsfiddle at...
http://jsfiddle.net/justinerswell/feDTU/
I need to get the last item in the substr and work backwards to populate the fields I need.
Thanks
Original Question
Hi I have a list box returned on a page with multiple result which are being parsed in as a string into the value...
<option value="1 Corn Exchange, The Strand, RYE, East Sussex, TN31 7DB, UNITED KINGDOM">
Using JQuery I need to do a couple of things..
- Get Selected Value
- Split Value of Selected Item by Comma's
- Loop through in revers and set a variable for each item i.e country: United Kingdom Postcode:TN31 7DB etc
Can anyone help me?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您想在点击或提交时获取数据吗?
但这不是一个好主意,考虑到你的“数据”结构无法改变(即缺少字段等) - 因为它会破坏索引......
Do you want to fetch the data on click or submit?
But its not a very good idea, considering your "data" structure can't change (ie. missing fields and so on) - since it will break on the indexes....
jquery 有一个用于选择值的选择器。
所以使用
then split 在空间上
并在桌子上循环
jquery has a selector for selected value.
so use
then split on space
and loop on your table
假设如果你使用 Html 列表框而不是尝试这个
javascript
Hops 它有帮助
suppose if you are use Html Listbox than try this
javascript
Hops its helps
尝试 $.map() 获取列表中所有选定的项目
Try $.map() to get all selected items in list
试试这个简单的方法,在下拉列表框的 onchange() 事件上调用此函数。
函数 FuncFilter() {
Try this simple, call this function onchange() event of dropdown listbox .
function FuncFilter() {