在 jQuery 中获取 .each 循环中选定的子项
嘿伙计们。我试图在每个循环中获取选定的选项。实现这一目标的正确语法是什么?
我尝试了以下方法:
var row = $('#template_23423);
row.find('select[name^=COUNTY]').each(function (){
var selectedOption = $(this).children(':selected').val();
有什么想法吗?
Hey guys. I am trying to get the selected option in an each loop. What is the correct syntax to achieve that?
I tried the following:
var row = $('#template_23423);
row.find('select[name^=COUNTY]').each(function (){
var selectedOption = $(this).children(':selected').val();
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将为您提供
options
的值,如果您想要它们的文本,请使用text()
而不是val()
。That will give you the value of the
options
if you want to their text, usetext()
instead ofval()
.