如何将自动对焦添加到我的 spring 表单输入?

How do I add autofocus to my spring form input?

<div> <sf:input type="text" cssClass="xxsLen" id="field1" maxlength="3" path="Data.field1"/> </div>

我还有更多,但我想为第一个添加自动对焦。我该怎么做?我尝试在最后添加自动对焦,但它破坏了我的代码。这也是一个 .jsp 文件。

如果您的 Spring 版本非常现代,您可以添加自己的属性。不过你需要适当的 XHTML,所以试试这个:

<sf:input type="text" cssClass="xxsLen" 
    id="field1" maxlength="3" path="Data.field1" autofocus="autofocus" />