引用 CustomValidator 控件中的源控件
是否有可能获得对 customvalidator 在 javascript 中“附加”到的文本框的引用?
如果验证失败,我想在文本框周围放置一个红色边框。
Is it possible to get a reference to the textbox that the customvalidator is 'attached' to in javascript?
I want to place a red border around the texbox if it fails validation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上 chrissr 提供的代码在 Firefox 中不起作用,但可以跨浏览器运行(在 Firefox、Chrome 和 IE7 中测试):
Actually the code provided by chrissr doesn't work in Firefox, but this works cross-browser (tested in Firefox, Chrome and IE7):
您的 JavaScript 验证函数将有权访问“sender”和“args”参数。 正在验证的控件可以从“发送者”访问,如下所示。
Your javascript validation function will have access to "sender" and "args" parameters. The control that is being validated may be accessed from the "sender" as follows.