如何在客户端取消选中 RadioButtonList 中的所有单选按钮并在回发后保留

发布于 2024-11-09 17:08:30 字数 261 浏览 0 评论 0原文

ASP .NET Web 窗体 RadioButtonList 存在一个错误 - 如果您取消选中客户端上的所有单选按钮(使用 javascript),则在执行回发后,将选择列表中的第一项。

例如,尝试运行以下 jquery:

$('#myRadioList input').attr('checked', '');

执行回发后,将选择 RadioButtonList 中的第一项。

有人知道优雅的解决方法吗?

There is a bug with the ASP .NET Web Forms RadioButtonList - if you uncheck all the radios on the client-side (with javascript), after you do a postback the first item in the list will be selected.

For example, try running the following jquery:

$('#myRadioList input').attr('checked', '');

After you do a postback, the first item in the RadioButtonList will be selected.

Anyone know an elegant work around?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落成白 2024-11-16 17:08:30

这是因为根据设计,您需要选择一个选项

要取消选中所有选项:

 $('input[type=radio]').prop('checked', false);

将其放在页面末尾或

$(function() {});$(document) 内.ready(function() {}); block

PS 如果 jQuery 1.6+,请使用 prop 而不是 attr

.prop() 与 .attr()

It's because by design you will need to choose one option

To uncheck all:

 $('input[type=radio]').prop('checked', false);

place it to the end of the page or inside

a $(function() {}); or $(document).ready(function() {}); block

P.S. Use prop instead of attr if jQuery 1.6+

.prop() vs .attr()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文