为什么spellcheck
属性在IE中工作正常但在Edge中没有用于文本输入?这是我的代码:
<input spellcheck="true"></input>
文本区域拼写检查在Edge中工作正常,但文本输入不正常。
或者有解决方法吗?
作为一种解决方法,您可以使用单行textarea。 <textarea rows="1"></textarea>
以fiddle为例
似乎只在EdgeHtml 15及更高版本(https://caniuse.com/#feat=spellcheck-attribute)中支持
如果您使用Edge with EdgeHtml为14及以下,它将无法用于输入标记。
请参阅@msokrates答案以获取解决方法