如何获取 YUI 3 中的选择框值?
在 YUI 3 中,我有一个节点是我的选择框:
Y.get('#regionSelect');
How do I get the value that is current selected (即使有多个?)另外,有教程吗在那里明确地告诉我如何做到这一点(我不想序列化整个表单)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以直接使用这个。 需要
selector-css3
模块来支持 IE。http://jsfiddle.net/neosoyn/r8crW/
You can directly use this. Require
selector-css3
module to support IE.http://jsfiddle.net/neosoyn/r8crW/
如果您只需要选定一个选项,则可能不需要遍历所有选项:
You might not need to iterate through all options if you need just a selected one:
// 选定值
// 选定索引
// Selected Value
// Selected Index
有了选择器后,您就可以链接
get
和each
我刚刚在 http://developer.yahoo.com/yui/3/ 来解决问题。
Once you have the selector, you can chain
get
andeach
I've just been using the demos/examples on http://developer.yahoo.com/yui/3/ to figure things out.