内联禁用 Firefox 拼写检查?
我不久前研究过这个,但不记得该怎么做了。 我希望能够阻止 Firefox 在页面内的某些输入字段上运行拼写检查功能。 我知道这是可能的,但不记得如何设置它。
I researched this a while ago and can't remember how to do it. I want to be able to prevent Firefox from running it's spell-checking functionality on certain input fields from within the page. I know it's possible but can't remember how to set it up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
谈论一个伟大的“呃”时刻! 经过一番尝试后我找到了答案。 错误:
Talk about having a big "duh" moment! I found the answer after some trial & error:
“拼写检查”属性目前是仅在 Firefox 中可用的额外功能,但它正在考虑纳入 HTML5。
The "spellcheck" attribute is currently an extra feature available only in Firefox, but it is being considered for inclusion in HTML5.
使用 JQuery 添加属性 $('.textarea_className').attr('spellcheck',false);
这将允许您返回有效的 XHTML 标记。 =)
add the attribute using JQuery $('.textarea_className').attr('spellcheck',false);
This will allow you to return a valid XHTML mark up. =)
这样做的缺点是 W3 严格验证器给出 - 属性“拼写检查”不是有效属性。 对于我们这些患有强迫症的人来说是个坏消息,他们喜欢在验证我们的网站时看到 0 错误。
The downside of this is that the W3 strict validator gives - Attribute "spellcheck" is not a valid attribute. Bad news for those of us with OCD that love to see 0 errors in validating our sites.