Jquery 在页面加载时从列表中获取选定的单选按钮
我想知道是否有人可以发布一个示例,说明如何在加载页面时通过 jquery 从 asp.net 单选按钮列表控件获取选定的单选按钮选项。
谢谢
I was wondering if anyone can post an example of how to get a selected radio button option from an asp.net radio button list control via jquery on the loading of a page.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您想要查询列表的 javascript 函数中,使用此代码..
使用所选单选按钮列表的结果设置示例标签,您可以这样做...
In your javascript function where you want to query the list, use this code..
to set a sample label with the results of your selected radiobuttonlist, you could do this...
工作示例此处。
我用来获取单选按钮的选择器将抓取页面上所有具有
ofinterest
类的单选按钮。如果您想进一步限制选择器的范围,并且不介意直接在 aspx/ascx 中编写 JS,则可以使用上面 Scott 的解决方案。 但是,如果您为您感兴趣的按钮提供已知的类名,则可以将此 JS 放入 .js 文件中。
Working example here.
The selector I used to get the radio buttons will grab all the radio buttons with the class
ofinterest
on the page.If you want to scope the selector further, and you don't mind writing your JS directly in your aspx/ascx, you can use Scott's solution above instead. But if you give the buttons you're interested in a known classname, you can put this JS in a .js file.