谷歌浏览器未提交表单(js错误?)
我无法让 Google Chrome 提交我的表单。这变得非常荒谬。它最终会聚焦于一个随机表单字段(但每次都是相同的)。
FF 或 IE 没有问题...
Chrome 在开发人员工具中给我的两个错误是:
An invalid form control with name='state' is not focusable.
An invalid form control with name='unitName' is not focusable.
但是,这些甚至不是 Chrome 决定关注的领域。我很茫然,有没有人有这样的经历??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了这个问题,输入字段标记为“必填”,但通过 javascript 使其不可见。 Chrome 无法显示“请填写此字段”,因此它显示“名称='描述'的无效表单控件在控制台中无法聚焦”。
I had this exact problem with an input field marked "required" that was made invisible via javascript. Chrome could not display "please fill out this field" so it said An invalid form control with name='description' is not focusable in the console.
在没有看到 HTML 的情况下,谷歌搜索发现了以下内容:
问题的根源似乎是将
maxlength
属性分配给由浏览器自动填充的表单字段,其值超过了 maxlength 限制。Without seeing the HTML, here's what a little Google'ing turned up:
The root of the problem appears to be assigning a
maxlength
attribute to a form field that is automatically populated by the browser, with a value that is longer than the maxlength limit.我刚刚遇到了类似的问题,对我来说,解决方法是将
type="button"
添加到我的I just had a similar problem, and for me, the fix was adding
type="button"
into my<button>
tag.