ASP.NET XHTML 严格验证自动完成=关闭
我们有一个具有以下文档类型的 ASP.NET 表单:-
我们需要将 autocomplete=off (通过设置 AutoCompleteType="Disabled" 的 TextBox 属性)添加到输入字段,但仍然需要表单通过 XHTML 验证(是的,我知道因此它不是 XHTML 有效的)。
我们可以做些什么来忽略自动完成=关闭吗?
类似于:-
!ATTLIST 输入自动完成 CDATA #IMPLIED
提前致谢。
阿尔。
We have an ASP.NET form with the following doctype:-
We need to add autocomplete=off (by setting the TextBox property of AutoCompleteType="Disabled") to the input fields but still need the form to pass XHTML Validation (yes I know it's not XHTML valid because of this).
Is there anythign we can do to ignore the autocomplete=off??
Something like:-
!ATTLIST input autocomplete CDATA #IMPLIED
Thanks in advance.
Al.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 JavaScript 代码在客户端添加自动完成属性。我认为您无法定义应该识别该属性,因为您无权添加到定义 XHTML 的架构中。
You can add the autocomplete attribute on the client-side through JavaScript code. I don't think you can define that the attribute should be recognized because you don't have permission to add to the schema that defines XHTML.