radiobuttonlist 选定的值及其验证

发布于 2024-08-20 03:17:24 字数 148 浏览 12 评论 0原文

我有一个表单,其中有单选列表以及一组文本框和下拉列表。现在,当我检查单选按钮时,某些文本框将被禁用,某些文本框将被启用。现在我只想验证已启用的文本框,而不是已禁用的文本框一。 以同样的方式,当我检查其他单选按钮时,我想验证其余的文本框。请有人帮忙。

有人给我验证码。

i have an form in which i have radiolist and set of text boxes and dropdownlist.now when i check an radio some textboxes will be disabled and some text box will be enabled .now i want to validate only the enabled text box and not the disabled one.
in the same manner when i check other radiobutton i want to validate the rest of the text boxes.can some body help please.

some one give me the validation code for that.

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

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

发布评论

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

评论(1

鸢与 2024-08-27 03:17:24

如果您可以使用 jQuery,那么您可以使用启用的文本框,

$("input[type='text']:disabled")

并使用启用的文本框。

$("input[type='text']:not(:disabled))

如果您想使用简单的 javascript,那么您可以获取所有文本框,然后迭代它们,检查 type text 属性,并将 disabled 属性检查为 truefalse

If you can use jQuery then you can get the enabled text boxes using

$("input[type='text']:disabled")

and the enabled text boxes using

$("input[type='text']:not(:disabled))

If you want to use simple javascript then you can get all the textboxes, then iterate through them, check the type attribute for text and check the disabled attribute to true or false.

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