内联禁用 Firefox 拼写检查?

发布于 2024-07-06 22:06:18 字数 87 浏览 8 评论 0原文

我不久前研究过这个,但不记得该怎么做了。 我希望能够阻止 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

鹊巢 2024-07-13 22:06:18

谈论一个伟大的“呃”时刻! 经过一番尝试后我找到了答案。 错误:

<textarea spellcheck="false"></textarea>

Talk about having a big "duh" moment! I found the answer after some trial & error:

<textarea spellcheck="false"></textarea>
情绪失控 2024-07-13 22:06:18

“拼写检查”属性目前是仅在 Firefox 中可用的额外功能,但它正在考虑纳入 HTML5

The "spellcheck" attribute is currently an extra feature available only in Firefox, but it is being considered for inclusion in HTML5.

七禾 2024-07-13 22:06:18

使用 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. =)

剧终人散尽 2024-07-13 22:06:18

这样做的缺点是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文