加载页面时调用拼写检查

时间:2018-01-26 21:16:12

标签: javascript html

我在IE 11上创建HTML textarea表单,在加载页面时,表单将填充数据库中的值。当用户开始输入时,浏览器将进行拼写检查,但是当用户加载页面时,textarea中的文本没有拼写检查。

有没有办法在onload时强制添加红色拼写检查下划线?

1 个答案:

答案 0 :(得分:0)

为元素添加自动对焦。

<textarea id="myTextArea" spellcheck="true"  autofocus="autofocus">Ths is the text from the dtabase that's loaded on page load.</textarea>

对于Internet Explorer,请尝试this

$(function() {
  $('[autofocus]:not(:focus)').eq(0).focus();
});