Why is Chrome showing a quot;Please Fill Out this Fieldquot; tooltip on empty fields?(为什么 Chrome 显示“请填写此字段?空字段上的工具提示?)
问题描述
我的客户联系了我,说用户投诉说某些字段现在显示带有消息请填写此字段"的工具提示.我简直不敢相信我所听到的......但是客户端是对的 - 使用最新的 Chrome 版本,某些字段会显示带有此消息的浏览器工具提示,甚至与我的验证器并排显示!
I was contacted by my client saying that users complaint saying that some fields now show a tooltip with a message "Please Fill out This Field". I couldn't believe what I heard... but the client is right - using latest Chrome version some fields show a browser tooltip with this message even side by side with my validators!
有什么问题?我错过了什么?
What's the problem? What am I missing?
谢谢.
我的用户控件生成的HTML如下:
The HTML generated by my user control is as follows:
<input name="tbMontante" type="text" maxlength="8" size="10" tbMontante" class="Montantetextfield"
FieldName="Montante"
Required="True"
AllowDecimalValues="True"
/>
我的文档类型如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
我的浏览器应该使用 HTML 5 来解析它吗?
Should my browser use HTML 5 to parse it?
推荐答案
https://www.w3.org/TR/html5/sec-forms.html#element-attrdef-form-novalidate
您可以在表单中禁用验证.
You can disable the validation in the form.
这篇关于为什么 Chrome 显示“请填写此字段"?空字段上的工具提示?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 Chrome 显示“请填写此字段"?空字段上的工具提示?
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01