radiobuttonlist 选定的值及其验证
我有一个表单,其中有单选列表以及一组文本框和下拉列表。现在,当我检查单选按钮时,某些文本框将被禁用,某些文本框将被启用。现在我只想验证已启用的文本框,而不是已禁用的文本框一。 以同样的方式,当我检查其他单选按钮时,我想验证其余的文本框。请有人帮忙。
有人给我验证码。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以使用 jQuery,那么您可以使用启用的文本框,
并使用启用的文本框。
如果您想使用简单的 javascript,那么您可以获取所有文本框,然后迭代它们,检查
type
text
属性,并将disabled
属性检查为true
或false
。If you can use jQuery then you can get the enabled text boxes using
and the enabled text boxes using
If you want to use simple javascript then you can get all the textboxes, then iterate through them, check the
type
attribute fortext
and check thedisabled
attribute totrue
orfalse
.